:root {
    /* Primary Colors */
    --color-primary: #DC143C;
    --color-button-primary: #C61937;
    --color-button-light: #E84560;

    /* Background Colors */
    --background-primary: #001f3f;
    --background-primary-darker: #051B34;
    --background-light: #001f3f;

    /* Text Colors */
    --text-color-primary: #B0BEC5;
    --text-color-secondary: #808080;
    --text-color-light: #e7e7e7;
    --text-white: #fff;

    /* Border Colors */
    --border-color-light: rgba(255, 255, 255, 0.1);
    --border-color-medium: #808080;
}

body {
    font-family: 'Open Sans', 'Arial', sans-serif;
    color: var(--text-white);
}




.toast-notification {
    position: fixed;
    top: 2rem;
    right: 2rem;
    width: 100%;
    max-width: 300px;
    border: 2px solid var(--color-primary);
    background-color: var(--background-primary);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    transform: translateX(400px);
    opacity: 0;
    transition: all 0.4s ease;
    

}

.toast-notification.show {
    transform: translateX(0);
    opacity: 1;
}

.toast-header {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-white);
    margin: 0;
}

.toast-message {
    font-size: 0.875rem;
    color: var(--text-color-light);
    line-height: 1.5;
    margin: 0;
    
}

@media (max-width: 640px) {
    .toast-notification {
        top: 1rem;
        right: 1rem;
        left: 1rem;
        max-width: none;
    }
}
