/**
 * Queue Status Display Styles
 * Shared styles for the queue status component across all trade pages
 */

/* Base pod-alert styles */
.pod-alert {
    position: relative;
    padding: 16px 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    overflow: hidden;
    background: rgba(16, 22, 35, 0.8);
}

.pod-alert::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.1;
    z-index: 0;
    pointer-events: none;
}

.pod-alert-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-start;
}

.pod-alert-icon {
    font-size: 24px;
    margin-right: 15px;
    margin-top: 2px;
}

.pod-alert-message {
    flex: 1;
}

.pod-alert-title {
    font-family: "Orbitron", "Exo 2", sans-serif;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
    color: #ffffff;
}

.pod-alert-text {
    color: #9fafca;
    font-size: 14px;
    line-height: 1.4;
}

.pod-alert-text a {
    color: #ffd700;
    text-decoration: none;
}

.pod-alert-text a:hover {
    text-decoration: underline;
}

/* Success variant (online/available) */
.pod-alert-success {
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.15), rgba(40, 167, 69, 0.05));
    border-left: 4px solid #28a745;
}

.pod-alert-success .pod-alert-icon,
.pod-alert-success .pod-alert-title {
    color: #28a745;
}

.pod-alert-success::before {
    background: linear-gradient(135deg, #28a745, transparent);
}

/* Warning variant (queue full) */
.pod-alert-warning {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.15), rgba(255, 193, 7, 0.05));
    border-left: 4px solid #ffc107;
}

.pod-alert-warning .pod-alert-icon,
.pod-alert-warning .pod-alert-title {
    color: #ffc107;
}

.pod-alert-warning::before {
    background: linear-gradient(135deg, #ffc107, transparent);
}

/* Danger variant (offline/error) */
.pod-alert-danger {
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.15), rgba(220, 53, 69, 0.05));
    border-left: 4px solid #dc3545;
}

.pod-alert-danger .pod-alert-icon,
.pod-alert-danger .pod-alert-title {
    color: #dc3545;
}

.pod-alert-danger::before {
    background: linear-gradient(135deg, #dc3545, transparent);
}

/* Premium crown icon styling */
.pod-alert-success .fa-crown {
    color: #ffd700;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .pod-alert {
        padding: 12px 16px;
    }

    .pod-alert-icon {
        font-size: 20px;
        margin-right: 12px;
    }

    .pod-alert-title {
        font-size: 14px;
    }

    .pod-alert-text {
        font-size: 13px;
    }
}
