/* Global Alert Sistemi */
.global-alert {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 99999;
    min-width: 300px;
    max-width: 500px;
    opacity: 0;
    transform: translateX(400px);
    transition: all 0.3s ease;
}

.global-alert.show {
    opacity: 1;
    transform: translateX(0);
}

.global-alert-content {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: #1e293b;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    border-left: 4px solid;
}

.global-alert-success .global-alert-content {
    border-left-color: #10b981;
}

.global-alert-error .global-alert-content {
    border-left-color: #ef4444;
}

.global-alert-warning .global-alert-content {
    border-left-color: #f59e0b;
}

.global-alert-info .global-alert-content {
    border-left-color: #3b82f6;
}

.global-alert-content i.fas {
    font-size: 20px;
    flex-shrink: 0;
}

.global-alert-success i.fas {
    color: #10b981;
}

.global-alert-error i.fas {
    color: #ef4444;
}

.global-alert-warning i.fas {
    color: #f59e0b;
}

.global-alert-info i.fas {
    color: #3b82f6;
}

.global-alert-message {
    flex: 1;
    color: #ffffff;
    font-size: 14px;
    line-height: 1.5;
}

.global-alert-close {
    background: none;
    border: none;
    color: #94a3b8;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease;
    flex-shrink: 0;
}

.global-alert-close:hover {
    color: #ffffff;
}

.global-alert-close i {
    font-size: 16px;
}

/* Mobile */
@media (max-width: 768px) {
    .global-alert {
        top: 10px;
        right: 10px;
        left: 10px;
        min-width: auto;
        max-width: none;
    }
    
    .global-alert-content {
        padding: 14px 16px;
    }
    
    .global-alert-message {
        font-size: 13px;
    }
}
