/* Add server status styles */
.other-server-status {
    position: relative;
    background: var(--section-bg);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.minecraft-server-status {
    position: relative;
    background: var(--section-bg);
    border-radius: 8px;
    text-align: center;
    min-height: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.status-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.status-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ff4444;
    box-shadow: 0 0 8px rgba(255, 68, 68, 0.4);
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { opacity: 0.8; }
    50% { opacity: 0.4; }
    100% { opacity: 0.8; }
}

.status-message {
    color: #888;
    margin: 1rem 0;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.status-details-button {
    background: none;
    border: 1px solid #ff4444;
    color: #ff4444;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: auto;
}

.status-details-button:hover {
    background: rgba(255, 68, 68, 0.1);
    transform: translateY(-1px);
}

/* For better vertical spacing */
.server-status.unavailable {
    padding: 1.5rem;
    gap: 0.5rem;
} 