/* Contact Form Toast Notification Styles */
.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    max-width: 400px;
}

.toast {
    background: white;
    padding: 16px 20px;
    margin-bottom: 10px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: slideIn 0.3s ease-out;
    border-left: 4px solid;
}

.toast.success {
    border-left-color: #10b981;
}

.toast.error {
    border-left-color: #ef4444;
}

.toast.warning {
    border-left-color: #f59e0b;
}

.toast.info {
    border-left-color: #622CFF;
}

.toast-icon {
    font-size: 20px;
    flex-shrink: 0;
}

.toast.success .toast-icon {
    color: #10b981;
}

.toast.error .toast-icon {
    color: #ef4444;
}

.toast.warning .toast-icon {
    color: #f59e0b;
}

.toast.info .toast-icon {
    color: #622CFF;
}

.toast-message {
    flex: 1;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    color: #333;
    font-weight: 500;
}

.toast-close {
    background: none;
    border: none;
    cursor: pointer;
    color: #999;
    font-size: 18px;
    padding: 0;
    flex-shrink: 0;
    transition: color 0.2s;
}

.toast-close:hover {
    color: #333;
}

@keyframes slideIn {
    from {
        transform: translateX(400px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(400px);
        opacity: 0;
    }
}

.toast.removing {
    animation: slideOut 0.3s ease-in forwards;
}

@media (max-width: 768px) {
    .toast-container {
        left: 10px;
        right: 10px;
        max-width: calc(100% - 20px);
    }

    .toast {
        padding: 14px 16px;
    }

    .toast-message {
        font-size: 13px;
    }
}

/* File Requirements Styling */
.file-requirements {
    background: #f0f4ff;
    border-left: 4px solid #622CFF;
    padding: 12px 14px;
    margin-top: 10px;
    margin-bottom: 15px;
    border-radius: 4px;
}

.requirements-text {
    margin: 6px 0;
    font-size: 13px;
    color: #555;
    font-family: 'Roboto', sans-serif;
    display: flex;
    align-items: center;
    gap: 8px;
}

.requirements-text strong {
    color: #333;
    font-weight: 600;
}

.requirement-icon {
    font-size: 14px;
    color: #622CFF;
    font-weight: bold;
    flex-shrink: 0;
}

.requirements-text:last-child {
    margin-bottom: 0;
}

/* Form Hint/Note Styling */
.form-hint {
    font-size: 13px;
    color: #666;
    font-family: 'Roboto', sans-serif;
    margin-top: 6px;
    margin-bottom: 0;
    font-weight: 400;
    line-height: 1.4;
}

.form-hint::before {
    content: "ℹ ";
    color: #622CFF;
    font-weight: bold;
    margin-right: 4px;
}

/* Email Note Styling - Match file requirements box */
.email-note {
    background: #f0f4ff;
    border-left: 4px solid #622CFF;
    padding: 12px 14px;
    margin-top: 10px;
    margin-bottom: 0;
    border-radius: 4px;
}

.note-text {
    margin: 0;
    font-size: 13px;
    color: #555;
    font-family: 'Roboto', sans-serif;
    display: flex;
    align-items: center;
    gap: 8px;
    line-height: 1.5;
}

.note-icon {
    font-size: 14px;
    color: #622CFF;
    font-weight: bold;
    flex-shrink: 0;
}

