/* Notification styles */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 20px;
    border-radius: 4px;
    color: white;
    font-weight: bold;
    z-index: 9999;
    max-width: 400px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.notification.error {
    background-color: #dc3545;
    border-left: 4px solid #c82333;
}

.notification.success {
    background-color: #28a745;
    border-left: 4px solid #1e7e34;
}

.notification.info {
    background-color: #17a2b8;
    border-left: 4px solid #138496;
}

/* Help text styles */
.help-text {
    display: block;
    margin-top: 5px;
    color: #666;
    font-size: 0.9em;
    font-style: italic;
}

/* Form field styles */
#additional_emails {
    width: 100%;
    max-width: 400px;
}

/* Dashboard specific styles */
.dashboard-content #additional_emails {
    margin-bottom: 10px;
}

/* Admin specific styles */
.form-table #additional_emails {
    width: 400px;
} 