/* Reset basic */
.dashboard, .dashboard * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Layout main */
.dashboard {
    display: flex;
    min-height: 100vh;
    background: #F7F5EE;
}

.page-template-dashboard main#main-content {
    max-width: 100%;
}

/* Sidebar */
.dashboard__sidebar {
    width: 294px;
    background: #F7F5EE;
    padding: 15px 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 90vh;
}
.sidebar__profile {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 26px;
}
.sidebar__profile img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
}
.sidebar__profile h3 {
    color: #2B4211;
    font-family: "GT Walsheim Condensed Black Trial", Sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 800;
    line-height: 14px; /* 100% */
    text-transform: uppercase;
    margin-bottom: 7px;
}
.sidebar__profile span {
    color: #2B4211;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 14px; /* 100% */
    text-transform: uppercase;
}

/* Menu */
.sidebar__nav ul {
    list-style: none;
}
.nav__item {
    padding: 15px 26px;
    cursor: pointer;
    border-radius: 4px;
    transition: background .2s, color .2s;
    color: rgba(43, 66, 17, 0.40);
    font-size: 12px;
    font-style: normal;
    font-weight: 800;
    line-height: 26px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    font-family: "GT Walsheim Condensed Black Trial", Sans-serif;
}

.nav__item.active {
    color: #2B4211;
    font-size: 12px;
    font-style: normal;
    font-weight: 800;
    line-height: 26px; /* 216.667% */
    text-transform: uppercase;
}

li.nav__item.active:before, .nav__item:not(.active):hover:before {
    content: '';
    background: url(/wp-content/uploads/2025/06/icon-active.png) no-repeat left;
    width: 15px;
    height: 38px;
    position: absolute;
    left: -4px;
    top: 50%;
    transform: translateY(-50%);
}

.nav__item.active svg path {
    stroke-opacity: 1;
    stroke: #2B4211;
}

/* Content */
.dashboard__content {
    flex: 1;
    padding: 40px;
    padding-left: 48px;
    background: url(https://seasonal-drops.freeform.com.au/wp-content/uploads/2025/06/bg-dashboard.png) no-repeat center;
    background-size: 100% 100%;
    margin-right: 20px;
    margin-bottom: 20px;
}
.tab-content {
    display: none;
}
.tab-content.active {
    display: block;
}
.tab-content h1 {
    color: #2B4211;
    font-family: "GT Walsheim Condensed Black Trial", Sans-serif;
    font-size: 50px;
    font-style: normal;
    font-weight: 800;
    line-height: 50px; /* 100% */
    text-transform: uppercase;
    margin-bottom: 30px;
}
.upcoming {
    color: #2B4211;
    font-family: "GT Walsheim Condensed Black Trial", Sans-serif;
    font-size: 22px;
    font-style: normal;
    font-weight: 800;
    line-height: 24px; /* 109.091% */
    text-transform: uppercase;
}
.your-plan {
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}
.your-plan h2 {
    margin-bottom: 15px;
    color: #37491e;
}
.your-plan p {
    font-size: 1rem;
    margin-bottom: 10px;
}
.count-btn {
    background: #f5f2e8;
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 2px 8px;
    cursor: pointer;
    font-weight: bold;
    margin: 0 5px;
}
