.profile-container {
    width: 1250px;
    margin: 10px auto;
    margin-top: 70px;
    margin-bottom: 70px;
    display: flex;
    justify-content: space-between;
    padding: 10px;
    border-radius: 20px;
}

.left-profile-div  {
    width: 270px;
    overflow-y: auto; /* Enable vertical scrolling */
    overflow-x: hidden;
    margin-right: 20px;
    background-color: white;
    border-radius: 20px;
}

.center-profile-div {
    overflow-y: auto; /* Enable vertical scrolling */
    overflow-x: hidden;
    margin-right: 20px;
    background-color: white;
    border-radius: 20px;
}

.right-profile-div {
    flex: 1;
    padding-left: 10px;
    overflow-y: auto; /* Enable vertical scrolling */
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    background-color: white;
    border-radius: 20px;
}

.edit-container {
    margin: 30px;
    width: 100%;
    border-radius: 20px;
    display: block;
}


.pricing-cards-row {
    display: flex;
    justify-content: space-between;
}

.pricing-card {
    width: 30%;
    padding: 25px;
    margin: 10px;
    border-radius: 12px;
    background-color: #F9F9F9;
    position: relative;
    min-height: 350px;
}

.pricing-card.active {
    background-color: #F4F1FD;
}

.pricing-card h2 {
    color: #6C5CE7;
    font-size: 16px;
    margin-bottom: 15px;
}

.price {
    font-size: 24px;
    font-weight: bold;
    margin: 15px 0;
}

.features {
    padding: 0px;
}

.features li {
    margin: 12px 0;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 14px;
}

.btn-current {
    pointer-events: none;
    display: block;
    min-width: 150px;
    max-width: 200px;
    padding: 8px 24px;
    font-weight: normal;
    border-radius: 12px;
    background-color: white;
    color: gray;
    border: none;
    text-align: center;
    width: 100%;
}

.btn-current:hover {
    pointer-events: none;
  }

.btn-cancel {
    background-color: transparent;
    border: 1px solid transparent;
    font-size: 12px;
    color: gray;
    width: 100%;
}

.btn-upgrade {
    border: none;
    padding: 8px 24px;
    font-weight: normal;
    border-radius: 12px;
    background-color: #e6dff9;
    color: #1B1B1B;
    text-align: center;
    width: 100%;
}

.btn-upgrade:hover {
    background-color: #5F4C9A;
    color: white;
  }

.btn-downgrade {
    min-width: 150px;
    max-width: 200px;
    padding: 8px 24px;
    font-weight: normal;
    border-radius: 12px;
    background-color: white;
    color: gray;
    border: none;
    text-align: center;
    width: 100%;
}
  
.btn-downgrade:hover {
    color: #5F4C9A;
    border: 1px solid #5F4C9A;
    text-decoration: none;
    width: 100%;
}

/* Section Styles */
.section-label {
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
    padding-left: 10px;
}

/* Plan Section */
.plan-section {
    background: #F9F9F9;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 30px;
    border-radius: 20px;
}

.plan-info-card {
    padding: 10px;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.plan-details h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.next-payment {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
}

/* Billing Section */
.billing-section {
    background: white;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 30px;
}

.billing-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.billing-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.icon-button {
    background: none;
    border: none;
    padding: 5px;
    cursor: pointer;
}

.icon-small {
    width: 16px;
    height: 16px;
}

/* Usage Section */
.usage-section {
    background: #F9F9F9;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 30px;
    border-radius: 20px;
}

.usage-metrics {
    display: flex;
    gap: 30px;
    padding-left: 10px;
}

.usage-item {
    flex: 1;
}

.usage-label {
    margin-bottom: 10px;
    color: #333;
}

.progress-bar-container {
    height: 8px;
    background: #eee;
    border-radius: 4px;
    margin-bottom: 5px;
}

.progress-bar {
    height: 100%;
    background: #6C5CE7;
    border-radius: 4px;
}

.usage-count {
    color: #666;
    font-size: 12px;
}