#changeSubscriptionPlanModal{
    padding: 0;
    align-items: flex-start;
}

.pricing-modal-container{
    min-width: 100%;
}

.pricing-modal-content{
    position: relative;
    animation: fadeInDown var(--transition-normal);
    min-width: 100%;
    min-height: 100vh;
}

#pricing{
    margin: 0;
    min-height: 100vh;
    min-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.7);
}

.close-btn {
    position: absolute;
    right: 1rem;
    top: 0;
    transform: translateY(50%);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.25rem;
    color: inherit;
}

.close-btn.hidden{
    display: none;
}

section:not(.hero)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-primary), transparent);
}

.section-title {
    position: relative;
    display: inline-block;
    margin-bottom: var(--space-xl);
    padding-bottom: 0.5rem;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--accent-primary);
}

.btn-primary{
    text-decoration: none;
}

.disabled-plan {
    opacity: 0.7;
    pointer-events: none;
    cursor: not-allowed;
}