.planContentArea {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 6px;
    overflow-y: auto;
    padding: 5px 0;
    box-sizing: border-box;
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

.planContentArea::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari, Opera */
}

.planCard {
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    background-color: var(--grey0);
    width: 500px;
    height: fit-content;
    display: flex;
    padding-left: 16px;
    border-radius: var(--borderRadiusMedium);
    padding-bottom: 12px;
    padding-top: 12px;
}

.planTitle {
    width: 100%;
    height: 30px;
    font-size: 18px;
    font-weight: 600;
    color: var(--black);
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}



.priceAndButton {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: fit-content;
    margin-top: 4px;
}

.planPrice {
    width: fit-content;
    /* height: 40px; */
    height: fit-content;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 2px;
    margin-top: 2px;
    margin-left: 14px;
}

.planPrice svg {
    width: 14px;
    height: auto;
    color: var(--black);
}

.planPrice p {
    font-size: 16px;
    font-weight: 400;
    color: var(--black);
    margin: 0px;
}

.planPrice span {
    font-size: 18px;
    color: var(--black);
}

.planSelectButton {
    background-color: white;
    width: 120px;
    height: 30px;
    border-radius: var(--borderRadiusBtnSmall);
    border: 1px solid var(--grey2);
    font-size: 14px;
    font-weight: 500;
    color: var(--black);
    margin-right: 10px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.planSelectButton:hover {
    background-color: var(--btnHover);
}

/* .planSelectButton.currentPlan {
    background-color: var(--blue2);
} */

.currentPlan {
    background-color: var(--grey1);
    border: 1px solid var(--grey3);
    color: var(--grey3);
}

.planDescription {
    width: 100%;
    height: fit-content;
    font-size: 14px;
    font-weight: 300;
    color: var(--grey4);
    margin-bottom: 10px;
    /* 상단 여백 추가 */
}

.planDescription p {
    width: fit-content;
    height: fit-content;
    padding-left: 30px;
    margin: 0;
    margin-top: 2px;
    color: var(--black);
}

.planConditions {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 6px;
    width: fit-content;
    height: 20px;
    font-size: 14px;
    font-weight: 300;
    color: var(--grey4);
    padding-left: 40px;
}

.planConditions svg {
    width: 16px;
    height: auto;
    color: var(--grey4);
}

.planConditions.promotionActive p,
.planConditions.promotionActive svg {
    color: var(--blue2);
}

.planConditions p {
    margin: 0;
}

.planPrice.promotionActive {
    text-decoration: line-through;
    text-decoration-thickness: 2px;
    color: var(--blue2);
}