/* Custom Alert Styles */
.custom-alert {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    min-width: 300px;
    max-width: 500px;
    border-radius: 10px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    animation: slideInRight 0.3s ease-out;
}

.custom-alert.success {
    background: linear-gradient(135deg, #00ffe7, #00bfff);
    color: #000;
}

.custom-alert.error {
    background: linear-gradient(135deg, #ff4757, #ff3838);
    color: #fff;
}

.alert-content {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    gap: 12px;
}

.alert-icon {
    font-size: 1.5rem;
    font-weight: bold;
}

.alert-message {
    flex: 1;
    font-weight: 500;
    line-height: 1.4;
}

.alert-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: inherit;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.alert-close:hover {
    opacity: 1;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .custom-alert {
        top: 10px;
        right: 10px;
        left: 10px;
        min-width: auto;
        max-width: none;
    }
    
    .alert-content {
        padding: 12px 15px;
    }
    
    .alert-message {
        font-size: 0.9rem;
    }
}