/* Previous styles remain */
/* Additions for Server Widget */

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    /* Ensure height fits */
}

.brand-group {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.server-widget {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.widget-label {
    font-size: 0.6rem;
    font-weight: 700;
    color: var(--text-gray);
    margin-bottom: 2px;
    margin-left: 2px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.widget-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.ip-box {
    background: #1f2937;
    border: 1px solid #374151;
    border-radius: 6px;
    padding: 0.3rem 0.6rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-white);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.2s;
    user-select: none;
}

.ip-box:hover {
    border-color: var(--accent-blue);
    background: #374151;
}

.ip-box i {
    color: var(--text-gray);
    font-size: 0.8rem;
}

.ip-box:hover i {
    color: var(--text-white);
}

.widget-discord {
    background: #5865F2;
    /* Discord Blurple */
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.2s, background 0.2s;
}

.widget-discord:hover {
    background: #4752c4;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .server-widget {
        display: none;
    }

    /* Hide on mobile to save space */
}