/* =========================================
   Birth Sky Explorer 2.1
   ========================================= */

#sky2-wrap{
    display:flex;
    gap:20px;
    width:100%;
    min-height:700px;
    margin:30px 0;
    font-family:Arial,Helvetica,sans-serif;
}

/* =========================
   LEFT PANEL
   ========================= */

#sky2-panel{
    width:320px;
    flex-shrink:0;
    background:#101722;
    color:#fff;
    padding:20px;
    border-radius:12px;
    box-shadow:0 0 20px rgba(0,0,0,.25);
}

.sky2-title{
    margin:0 0 20px;
    text-align:center;
    color:#fff;
    font-size:24px;
}

.sky2-row{
    margin-bottom:15px;
}

.sky2-row label{
    display:block;
    margin-bottom:6px;
    font-size:13px;
    color:#b8c3d6;
}

.sky2-row input{
    width:100%;
    box-sizing:border-box;
    border:none;
    border-radius:8px;
    padding:10px;
    background:#1c2738;
    color:#fff;
}

.sky2-buttons{
    display:flex;
    flex-direction:column;
    gap:10px;
    margin-top:15px;
}

.sky2-buttons button{
    width:100%;
    border:none;
    border-radius:8px;
    padding:12px;
    cursor:pointer;
    font-size:14px;
    font-weight:600;
}

#sky2-btn-now{
    background:#2d5cff;
    color:white;
}

#sky2-btn-locate{
    background:#00a870;
    color:white;
}

#sky2-btn-go{
    background:#ff8c00;
    color:white;
}

.sky2-buttons button:hover{
    opacity:.9;
}

/* =========================
   LOCATION BOX
   ========================= */

#sky2-location-info{
    margin-top:15px;
    padding:12px;
    background:#172131;
    border-radius:8px;
    font-size:13px;
    line-height:1.5;
}

/* =========================
   READOUT
   ========================= */

#sky2-readout{
    margin-top:20px;
}

.sky2-item{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:10px;
    margin-bottom:8px;
    border-radius:8px;
    background:#172131;
}

.sky2-item span{
    color:#8ec5ff;
}

/* =========================
   3D AREA
   ========================= */

#sky2-container{
    flex:1;
    min-height:700px;
    height:700px;
    background:#020810;
    border-radius:12px;
    overflow:hidden;
    position:relative;
}

/* =========================
   TOOLTIP
   ========================= */

#sky2-tooltip{
    position:absolute;
    display:none;
    pointer-events:none;
    background:rgba(0,0,0,.8);
    color:#fff;
    padding:8px 12px;
    border-radius:6px;
    font-size:13px;
    z-index:99999;
}

/* =========================
   SEO CONTENT
   ========================= */

.bse-seo-content{
    margin-top:40px;
    padding:30px;
    background:#f8f8f8;
    border-radius:10px;
}

.bse-seo-content h2{
    margin-top:0;
}

.bse-seo-content p{
    line-height:1.8;
}

/* =========================
   MOBILE
   ========================= */

@media(max-width:980px){

    #sky2-wrap{
        flex-direction:column;
    }

    #sky2-panel{
        width:100%;
    }

    #sky2-container{
        width:100%;
        height:500px;
        min-height:500px;
    }
}