/* Toast Notification Styles */
.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
}

.toast {
    background-color: #333;
    color: white;
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    opacity: 1;
    transition: opacity 0.5s ease-in-out, transform 0.3s ease-in-out;
    max-width: 350px;
    transform: translateX(0);
    font-size: 14px;
    line-height: 1.4;
}

.toast.success {
    background-color: #28a745;
    border-left: 4px solid #1e7e34;
}

.toast.error {
    background-color: #dc3545;
    border-left: 4px solid #c82333;
}

.toast.warning {
    background-color: #ffc107;
    color: #333;
    border-left: 4px solid #e0a800;
}

.toast.info {
    background-color: #17a2b8;
    border-left: 4px solid #138496;
}

.toast.fade-out {
    opacity: 0;
    transform: translateX(100%);
}
.strength-msg {
    font-size: 12px;
    margin-top: 5px;
    display: block;
}
