*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    background:#F8FAFC;
    color:#475569;
    font-family:Arial,Helvetica,sans-serif;
}

.prop_container{
    max-width:1600px;
    margin:auto;
    padding:15px;

    --primary:#2563EB;
    --dark:#0F172A;
    --bg:#F8FAFC;
    --card:#FFFFFF;
    --border:#E2E8F0;
    --text:#475569;
    --success:#16A34A;
    --warning:#F59E0B;
}


/* =========================================================
   HERO
========================================================= */

.prop_hero2{
    background:linear-gradient(135deg,#2563EB,#1D4ED8);
    color:white;
    padding:42px;
    border-radius:34px;
    display:flex;
    justify-content:space-between;
    gap:30px;
    flex-wrap:wrap;
    margin-bottom:24px;
}

.prop_hero2 h1{
    font-size:46px;
    margin-bottom:10px;
}

.prop_hero2 p{
    font-size:17px;
    line-height:1.6;
    max-width:720px;
    opacity:.92;
}

.prop_hero-actions{
    display:flex;
    gap:12px;
    margin-top:22px;
    flex-wrap:wrap;
}

.prop_btn{
    display:inline-block;
    background:white;
    color:#2563EB;
    padding:14px 18px;
    border-radius:14px;
    text-decoration:none;
    font-weight:700;
    border:0;
    cursor:pointer;
}

.prop_btn_secondary{
    display:inline-block;
    background:rgba(255,255,255,.14);
    color:white;
    border:1px solid rgba(255,255,255,.35);
    padding:14px 18px;
    border-radius:14px;
    text-decoration:none;
    font-weight:700;
    cursor:pointer;
}


/* =========================================================
   HERO STATS
========================================================= */

.prop_stats{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:12px;
    min-width:400px;
}

.prop_hero_stat{
    background:rgba(255,255,255,.12);
    border:1px solid rgba(255,255,255,.16);
    padding:20px;
    border-radius:18px;
}

.prop_hero_stat strong{
    display:block;
    font-size:26px;
    color:white;
}

.prop_hero_stat span{
    font-size:13px;
    opacity:.85;
}


/* =========================================================
   SECTIONS
========================================================= */

.prop_section{
    background:white;
    padding:28px;
    border-radius:28px;
    margin-bottom:24px;
}

.prop_section-header{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    gap:20px;
    margin-bottom:22px;
}

.prop_section-header h2{
    font-size:28px;
    color:#0F172A;
    margin-bottom:6px;
}

.prop_section-header p{
    margin:0;
    color:#64748B;
    line-height:1.5;
}

.prop_action{
    display:inline-block;
    background:#2563EB;
    color:white;
    padding:12px 16px;
    border-radius:12px;
    text-decoration:none;
    border:0;
    cursor:pointer;
    font-weight:600;
}

.prop_action_secondary{
    display:inline-block;
    background:#EFF6FF;
    color:#2563EB;
    padding:12px 16px;
    border-radius:12px;
    text-decoration:none;
    border:0;
    cursor:pointer;
    font-weight:600;
}


/* =========================================================
   METRICS
========================================================= */

.prop_metrics{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:14px;
}

.prop_metric{
    background:#F8FAFC;
    padding:20px;
    border-radius:18px;
    text-align:center;
}

.prop_metric i{
    font-size:24px;
    color:#2563EB;
    margin-bottom:10px;
}

.prop_metric strong{
    display:block;
    color:#0F172A;
    font-size:20px;
}

.prop_metric span{
    font-size:13px;
    color:#64748B;
}


/* =========================================================
   PLATFORM CARDS
========================================================= */

.social_platforms{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:18px;
}

.social_platform{
    background:#F8FAFC;
    border-radius:20px;
    padding:22px;
    display:flex;
    align-items:center;
    gap:16px;
}

.social_platform_icon{
    width:52px;
    height:52px;
    border-radius:15px;
    background:white;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:25px;
    color:#2563EB;
}

.social_platform_info{
    flex:1;
}

.social_platform_info strong{
    display:block;
    color:#0F172A;
    font-size:17px;
    margin-bottom:4px;
}

.social_connected{
    color:#16A34A;
    font-size:13px;
}


/* =========================================================
   MAIN LAYOUT
========================================================= */

.social_layout{
    display:grid;
    grid-template-columns:minmax(0,1.65fr) minmax(320px,.75fr);
    gap:24px;
    align-items:start;
}

.social_main{
    min-width:0;
}

.social_aside{
    display:grid;
    gap:24px;
}


/* =========================================================
   QUARTER PLANNER
========================================================= */

.quarter_progress{
    background:#F8FAFC;
    padding:18px 20px;
    border-radius:18px;
    margin-bottom:20px;
}

.progress_track{
    height:9px;
    background:#E2E8F0;
    border-radius:20px;
    overflow:hidden;
    margin-top:10px;
}

.progress_value{
    width:42%;
    height:100%;
    background:#2563EB;
}

.week_grid{
    display:grid;
    grid-template-columns:repeat(13,1fr);
    gap:8px;
}

.week_card{
    background:#F8FAFC;
    border-radius:14px;
    padding:15px 5px;
    text-align:center;
    cursor:pointer;
    border:2px solid transparent;
}

.week_card strong{
    display:block;
    color:#0F172A;
    margin-bottom:5px;
}

.week_card span{
    font-size:11px;
}

.week_card.complete{
    background:#F0FDF4;
}

.week_card.current{
    background:#EFF6FF;
    border-color:#2563EB;
}

.week_card.current strong{
    color:#2563EB;
}


/* =========================================================
   WEEK DETAIL
========================================================= */

.week_schedule{
    display:grid;
    grid-template-columns:repeat(7,1fr);
    gap:10px;
    margin-top:22px;
}

.day_grid{
    display:grid;
    grid-template-columns:repeat(7,1fr);
    gap:15px;
}


.day_card{
    background:#F8FAFC;
    padding:16px;
    border-radius:16px;
    min-height:125px;
}

.day_card.today{
    background:#EFF6FF;
    border:2px solid #2563EB;
}

.day_name{
    font-size:12px;
    color:#64748B;
    margin-bottom:10px;
}

.day_type{
    color:#0F172A;
    font-weight:700;
    line-height:1.35;
}

.day_status{
    margin-top:10px;
    font-size:11px;
    color:#64748B;
}


/* =========================================================
   TODAY POST
========================================================= */

.today_post{
    background:#F8FAFC;
    border-radius:22px;
    overflow:hidden;
}

.today_post_top{
    padding:22px;
}

.platform_badges{
    display:flex;
    gap:7px;
    flex-wrap:wrap;
    margin-bottom:16px;
}

.prop_badge{
    display:inline-flex;
    padding:6px 10px;
    border-radius:999px;
    background:#DBEAFE;
    color:#2563EB;
    font-size:12px;
}

.today_post h3{
    color:#0F172A;
    font-size:23px;
    line-height:1.3;
    margin-bottom:14px;
}

.today_post p{
    line-height:1.7;
}

.today_post img{
    display:block;
    width:100%;
    height:330px;
    object-fit:cover;
}

.post_hashtags{
    color:#2563EB;
    margin-top:15px;
}

.prop_actions{
    display:flex;
    gap:10px;
    flex-wrap:wrap;
    margin-top:18px;
}


/* =========================================================
   FORM
========================================================= */

.social_form_group{
    margin-bottom:16px;
}

.social_form_group label{
    display:block;
    color:#0F172A;
    font-weight:600;
    margin-bottom:7px;
}

.social_form_group input,
.social_form_group select,
.social_form_group textarea{
    width:100%;
    padding:12px 14px;
    border:1px solid #E2E8F0;
    border-radius:12px;
    background:white;
    color:#475569;
}

.social_form_group textarea{
    min-height:110px;
    resize:vertical;
}


/* =========================================================
   QUEUE
========================================================= */

.social_queue{
    display:grid;
    gap:12px;
}

.queue_item{
    background:#F8FAFC;
    padding:18px;
    border-radius:16px;
    display:flex;
    justify-content:space-between;
    gap:18px;
}

.queue_item strong{
    display:block;
    color:#0F172A;
    margin-bottom:5px;
}

.queue_meta{
    font-size:12px;
    color:#64748B;
}


/* =========================================================
   STRATEGY
========================================================= */

.strategy_grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:12px;
}

.strategy_card{
    background:#F8FAFC;
    border-radius:16px;
    padding:18px;
}

.strategy_card strong{
    display:block;
    color:#0F172A;
    margin-bottom:5px;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media(max-width:1200px){

    .week_grid{
        grid-template-columns:repeat(7,1fr);
    }

    .week_schedule{
        grid-template-columns:repeat(4,1fr);
    }

    .social_layout{
        grid-template-columns:1fr;
    }

    .day_grid{
        grid-template-columns:repeat(7,1fr);
    }

}

@media(max-width:900px){

    .prop_metrics,
    .social_platforms,
    .strategy_grid{
        grid-template-columns:repeat(2,1fr);
    }

    .week_schedule{
        grid-template-columns:repeat(2,1fr);
    }

}



/* =========================================================
   ADDITIONAL QUARTER / QUEUE STYLING
========================================================= */

.social_strategy_notice{
    background:#EFF6FF;
    border-radius:18px;
    padding:18px;
    margin-bottom:20px;
}

.social_strategy_notice strong{
    display:block;
    color:#1D4ED8;
    margin-bottom:5px;
}

.social_strategy_notice p{
    margin:0;
    line-height:1.5;
}

.queue_status{
    align-self:center;
    white-space:nowrap;
}


/* =========================================================
   ADDITIONAL SELETED POST STYLING
========================================================= */

/* -----------------------------------------
   DAY CARDS
----------------------------------------- */

.day_card {
    background:#F8FAFC;
    border:2px solid transparent;
    border-radius:18px;
    padding:18px 12px;
    text-align:center;
    cursor:pointer;
    transition:all .2s ease;
    min-height:125px;
}

.day_card:hover {
    transform:translateY(-2px);
    border-color:#CBD5E1;
}


/* -----------------------------------------
   TODAY
   Indicates the actual current day
----------------------------------------- */

.day_card.today {
    background:#F1F5F9;
    border-color:#94A3B8;
}

.day_card.today .day_name:after {
    content:" TODAY";
    display:block;
    margin-top:5px;
    font-size:10px;
    font-weight:700;
    color:#64748B;
    letter-spacing:.5px;
}


/* -----------------------------------------
   SELECTED
   Indicates the day currently being reviewed
----------------------------------------- */

.day_card.selected {
    background:#EFF6FF;
    border-color:#2563EB;
    box-shadow:0 5px 18px rgba(37,99,235,.18);
    transform:translateY(-2px);
}

.day_card.selected .day_name {
    color:#2563EB;
}

.day_card.selected .day_type {
    color:#1D4ED8;
}

.day_card.selected .day_status {
    color:#2563EB;
    font-weight:700;
}


/* -----------------------------------------
   TODAY + SELECTED
----------------------------------------- */

.day_card.today.selected {
    background:#DBEAFE;
    border-color:#2563EB;
    box-shadow:0 6px 20px rgba(37,99,235,.22);
}


/* -----------------------------------------
   DAY CONTENT
----------------------------------------- */

.day_name {
    font-weight:700;
    color:#0F172A;
    margin-bottom:10px;
}

.day_type {
    font-size:14px;
    font-weight:600;
    color:#475569;
    min-height:35px;
}

.day_status {
    font-size:12px;
    color:#64748B;
    margin-top:10px;
}


/* -------------------------------------------------------
   SELECTED POST
------------------------------------------------------- */

.today_post {
    background:#FFFFFF;
    border-radius:28px;
    overflow:hidden;
}

.today_post_top {
    padding:28px;
}

.today_post_top h3 {
    font-size:28px;
    color:#0F172A;
    margin-top:20px;
    margin-bottom:14px;
}

.today_post_top p {
    color:#475569;
    line-height:1.7;
}

.today_post > img {
    display:block;
    width:100%;
    max-height:420px;
    object-fit:cover;
}

.platform_badges {
    display:flex;
    gap:8px;
    flex-wrap:wrap;
}

.post_hashtags {
    margin-top:22px;
    color:#2563EB;
    font-weight:600;
    line-height:1.7;
}

.post_meta {
    display:flex;
    gap:10px;
    flex-wrap:wrap;
    margin-top:18px;
}

.post_meta_item {
    background:#F8FAFC;
    border-radius:12px;
    padding:9px 13px;
    font-size:13px;
    color:#475569;
}

.post_empty {
    padding:40px;
    text-align:center;
    background:#F8FAFC;
    border-radius:20px;
}

.post_empty i {
    font-size:35px;
    color:#94A3B8;
    margin-bottom:15px;
}

.post_empty h3 {
    margin-bottom:8px;
    color:#0F172A;
}

.post_empty p {
    color:#64748B;
}


@media(max-width:600px){

    .prop_container{
        padding-left:0px;
        padding-right:0px;
    }
    .prop_hero2{
        padding:28px;
    }

    .prop_hero2 h1{
        font-size:34px;
    }

    .prop_stats,
    .prop_metrics,
    .social_platforms,
    .strategy_grid,
    .week_schedule{
        grid-template-columns:1fr;
    }

    .week_grid{
        grid-template-columns:repeat(3,1fr);
    }

    .day_grid{
        grid-template-columns:repeat(3,1fr);
    }

    .today_post_top{
        padding-left:0px;
        padding-right:0px;
        }

}

