/*
Theme Name: Divi Child
Theme URI: https://yourwebsite.com
Description: Child theme for Divi
Author: Your Name
Template: Divi
Version: 1.0
*/

/* =====================================
   Global Right Sidebar (All Screens)
===================================== */

#gh-global-right-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    width: 100px;              /* Desktop width */
    height: 100vh;
    background-color: #0a4fb3; /* Blue sidebar */
    z-index: 9999;

    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 30px;
    box-sizing: border-box;
}

/* Logo inside sidebar */
#gh-global-right-sidebar img {
    max-width: 80px;
    height: auto;
    margin-bottom: 30px;
}

/* Push site content left (desktop) */
#page-container {
    margin-right: 100px;
}

/* =====================================
   Tablet & Mobile Responsive Behavior
===================================== */

@media (max-width: 980px) {

    #gh-global-right-sidebar {
        width: 18vw;        /* Relative width */
        min-width: 90px;
        max-width: 120px;
        padding-top: 20px;
    }

    #gh-global-right-sidebar img {
        max-width: 80%;
    }

    #page-container {
        margin-right: 18vw;
    }
}
