body {
    background: rgb(35, 43, 35);
}

.sandbox-card {
    font-family: sans-serif;
    padding: 20px;
    border: 2px solid #007bff;
    border-radius: 10px;
    max-width: 600px;
    margin: 50px auto;
    background-color: #f0f8ff;
}

.sandbox-card h1 {
    color: #0056b3;
}

.sandbox-card p {
    color: #333;
}

/* Sync Notification Toast */
.sync-notification {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: #28a745;
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    animation: popUp 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Form Styles */
#testForm {
    margin-top: 15px;
}

#testForm input[type="text"],
#testForm textarea {
    width: 80%;
    padding: 8px;
    margin-bottom: 10px;
}

#testForm p {
    font-size: 0.8em;
    margin-bottom: 5px;
}

#assets {
    margin-bottom: 10px;
    font-size: 0.8em;
}

#testForm button {
    padding: 10px 20px;
    cursor: pointer;
    color: white;
    border: none;
    border-radius: 5px;
}

#testForm button[type="submit"] {
    background: #007bff;
}

#deleteAssets {
    background: #dc3545;
    margin-left: 5px;
}

#formResponse {
    margin-top: 10px;
    font-weight: bold;
}

/* Message Status Classes */
.msg-status {
    color: #6c757d;
}

.msg-success {
    color: #28a745;
}

.msg-error {
    color: #dc3545;
}

@keyframes popUp {
    from {
        bottom: -60px;
        opacity: 0;
    }

    to {
        bottom: 30px;
        opacity: 1;
    }
}
