/* Two-column layout for logged-in users */
.content-layout.logged-in {
    display: flex;
    gap: 15px;
}

.sidebar-column {
    flex: 0 0 270px;
}

.main-content-column {
    flex: 1;
}


.section-header .section-title {
    font-size: 1.6rem;
    margin: 0;
}

/* Text button for sidebar links */
.text-button {
    color: var(--black);
    text-decoration: none;
    font-size: 0.7rem;
    font-weight: 300;
    transition: color 0.2s ease;
}

.text-button:hover {
    color: var(--dark_gray);
    text-decoration: underline;
}

.sidebar-title {
    font-size: 1.8rem;
    color: var(--black);
    font-weight: 700;
    margin: 0;
    letter-spacing: -1px;
}

.sidebar-subtitle {
    font-size: 0.9rem;
    color: var(--dark_gray);
    font-weight: 300;
    margin: 0;
}

.cart-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-text {
    flex: 1;
}

.cart-count-container {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(0, 173, 181, 0.1); /* --blue with opacity */
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-count {
    font-size: 1.7rem;
    color: var(--blue);
    font-weight: 700;
}

/* Sidebar divider */
.sidebar-divider {
    height: 1px;
    background-color: var(--light_gray);
    margin: 1.5rem 0;
}

/* Status card styles */
.status-card {
    margin-top: 1rem;
}

.status-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.status-label a {
    font-size: 0.9rem;
    color: var(--black);
    text-decoration: none;
    font-weight: 300;
    margin-left: 1rem;
}

.status-rectangle {
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3px 5px;
}

.dark-rectangle {
    background-color: var(--light_gray);
    color: var(--black);
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: -1px;
}