/* Status Indicators */
.status-indicator {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
    padding: 10px 12px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    border-left: 3px solid;
}

.status-success {
    background: #f0fff4;
    color: #22543d;
    border-color: #38a169;
}

.status-error {
    background: #fed7d7;
    color: #742a2a;
    border-color: #e53e3e;
}

.status-warning {
    background: #fffbeb;
    color: #7c2d12;
    border-color: #f59e0b;
}

.status-info {
    background: #ebf8ff;
    color: #1e3a8a;
    border-color: #3182ce;
}

.status-icon i {
    font-size: 16px;
}

.system-status-indicator {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid #e2e8f0;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    z-index: 1000;
    font-size: 14px;
    font-weight: 500;
    color: #4a5568;
}

.system-status-indicator .indicator-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #48bb78;
    animation: pulse 2s infinite;
    flex-shrink: 0;
}

.system-status-indicator.loading .indicator-dot {
    background: #f59e0b;
    animation: pulse 1s infinite;
}

.system-status-indicator.error .indicator-dot {
    background: #e53e3e;
    animation: pulse 1.5s infinite;
}

.indicator-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #48bb78;
    animation: pulse 2s infinite;
}

/* Notifications */
.notification {
    position: fixed;
    top: 110px;
    right: 20px;
    padding: 1rem 1.25rem;
    border-radius: 8px;
    color: white;
    font-weight: 500;
    z-index: 1000;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.3s ease;
    max-width: 400px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.notification.show {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.notification.success {
    background: #38a169;
}

.notification.error {
    background: #e53e3e;
}

.notification.info {
    background: #3182ce;
}

.notification.warning {
    background: #f59e0b;
}

/* Alerts */
.alert {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    border-left: 4px solid;
    font-weight: 500;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.alert i {
    margin-top: 2px;
    flex-shrink: 0;
}

.alert-info {
    background: #ebf8ff;
    border-color: #3182ce;
    color: #1e3a8a;
}

.alert-success {
    background: #f0fff4;
    border-color: #38a169;
    color: #22543d;
}

.alert-error {
    background: #fed7d7;
    border-color: #e53e3e;
    color: #742a2a;
}

.alert-warning {
    background: #fffbeb;
    border-color: #f59e0b;
    color: #7c2d12;
}

/* Info Box */
.info-box {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 10px;
    background: #ebf8ff;
    border-radius: 6px;
    color: #1e3a8a;
    font-size: 12px;
    line-height: 1.4;
    margin-top: 0.5rem;
}

.info-box i {
    color: #3182ce;
    margin-top: 2px;
    flex-shrink: 0;
}