.pricing-card-border {
    position: relative
}

.pricing-card-border:before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 16px 16px 0 0;
    padding: 1px 1px 0;
    background: linear-gradient(180deg, #414b4e 49.5%, rgba(65, 75, 78, 0));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude
}

.bg-border {
    background-color: rgba(65, 75, 78, 0.5);
}

.secondary-button-animation {
    &:after {
        content: "";
        position: absolute;
        z-index: -1;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        display: block;
        background: linear-gradient(90deg,hsla(0,0%,99%,.16),hsla(0,0%,99%,0) 50%,hsla(0,0%,99%,0));
        background-size: 200%;
        background-position: 100%;
        transition: all .8s cubic-bezier(.246,.75,.187,1);
        border-radius: inherit
    }

    &:hover:after {
        background-position: 0;
        border-radius: inherit
    }
}

.text-muted-foreground {
    color: rgb(121, 124, 124)
}

.pricing-card {
    max-width: 500px;
}

.pricing-card__text {
    min-height: 80px;
}

.pricing-card__button {
    background-color: rgb(255, 100, 83);
    color: white;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    text-transform: uppercase;
    min-width: 210px;
    cursor: pointer;
    border-width: 0;
    font-weight: bold;
}

.pricing-card__button--disabled {
    background-color: rgb(100, 100, 100); 
    color: white; 
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    text-transform: uppercase;
    min-width: 210px;
    cursor: not-allowed; 
    border-width: 0;
    font-weight: bold;
}

/* Account Info */

.account-info {
    background-color: rgb(45, 55, 72);
    border-width: 0px;
    padding: 40px;
    border-radius: 8px;
    max-width: 700px;
    margin: 0 auto;
}

.account-info h3 {
    color: rgb(229, 231, 235);
    font-size: 24px;
    margin-bottom: 15px;
}

.account-info p {
    color: rgb(229, 231, 235);
    margin-block-start: 5px;
    margin-block-end: 5px;
}

.subscription-details {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    margin-bottom: 50px;
}

.subscription-details td {
    padding: 10px;
    border: 0.6px solid rgb(75, 85, 99); 
    color: rgb(229, 231, 235);
}

table {    
    border-collapse: collapse; 
}

.subscription-details td:first-child {
    font-weight: bold;
}

.account-info .manage-subscription-link {
    float: right;
}

.account-info .upgrade-button {
    background-color: rgb(255, 100, 83);
    color: white;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    text-transform: uppercase;
}
