/* Contact panel styles */
#content-wrapper {
    display: flex;
    width: 100%;
}

#content {
    flex: 1;
    transition: width 0.3s ease;
}

#contact-info-panel {
    position: absolute !important;
    /* right is now set dynamically by JavaScript */
    top: 91px; /* Adjusted to match the image */
    width: 220px;
    background-color: #000;
    font-size: 16px;
    color: #b2b2b2;
    padding: 10px 20px;
    z-index: 100000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* Mobile specific styles that will override the above */
@media screen and (max-width: 767px) {
    #contact-info-panel {
        right: 0px !important;
        width: auto !important;
        max-width: 80% !important;
    }
}

#contact-info-panel.hidden {
    display: none;
}

/* Active contact menu item */
.contact-menu-item.active a {
    text-decoration: underline;
}

.contact-info h3 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: normal;
}

.contact-info p {
    margin: 5px 0;
    font-size: 16px;
    line-height: 1.5;
}

.contact-info a {
    color: #b2b2b2;
    text-decoration: underline;
}

/* Social icons in contact panel */
.contact-social-icons {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.contact-social-icons .icon-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #b2b2b2;
    color: #b2b2b2;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-social-icons .icon-circle:hover {
    background-color: #b2b2b2;
    color: #000;
}

.contact-social-icons iconify-icon {
    font-size: 20px;
}

/* Mobile responsive styles */
@media (max-width: 512px) {
    #content-wrapper {
        flex-direction: column;
    }

    #contact-info-panel {
        position: absolute;
        right: 2px !important;
        width: auto;
        max-width: 80%;
        margin-top: 0;
    }
}
