
body {
    font-family: Arial, 'Roboto', sans-serif;
    color: #333;
    margin: 0;
    padding: 0;
    background-color: #55a9fc;
}

button {
    cursor: pointer;
}

.container {
    display: flex;
    align-items: center;
    flex-direction: column;
    margin-top: 16px;
    background-color: white;
    width: min(700px, 98vw);
    margin-inline: auto;
    padding-block: 24px;
    border-radius: 20px;
    margin-bottom: 16px;
}

.icon {
    margin-top: 24px;
    box-shadow: 1px 1px 5px 1px rgba(0, 0, 0, 0.1);
}

.icon img {
    width: 200px;
    height: 200px;
}

.details {
    margin-top: 50px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.details-title {
    font-size: 28px;
    font-weight: 600;
    color: hsla(0, 0%, 5%, 0.8);
}

.details-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
    margin-top: 8px;
}

.details-price .dlr {
    font-size: 34px;
    font-weight: 600;
    color: black;
}

.details-price .per {
    font-size: 18px;
    font-weight: 500;
    color: hsla(0, 0%, 5%, 0.8);
}

.details-desc {
    font-size: 18px;
    font-weight: 400;
    color: hsla(0, 0%, 5%, 0.7);
    width: min(500px, 95vw);
    margin-top: 32px;
}


.paypal {
    width: min(450px, 95vw);
    margin-top: 48px;
}

:root {
    --top-bar-height: 60px;
}

.top-bar {
    display: flex;
    margin-top: 16px;
    margin-inline: 16px;
    height: var(--top-bar-height);
    justify-content: space-between;
}

.settings {
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 0;
    padding: 0;
    margin: 0;
    transition: opacity 0.1s ease;
}

.settings:active {
    opacity: 0.7;
}

.settings img {
    height: var(--top-bar-height);
}

.eshqol {
    filter: brightness(0) invert(1);
}

.options {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 6px;
}

.options button {
    background: transparent;
    margin: 0;
    border: 1px solid black;
    border-radius: 10px;
    padding: 8px;
    font-size: 18px;
}

.options .chosen {
    background: #333;
    color: white;
}

.provider {
    font-size: 24px;
}

.apikey {
    flex-direction: column;
    display: none;
}

.apikey input[type="text"] {
    width: min(320px, 95vw);
    height: 32px;
    border: 1px solid black;
    padding-left: 12px;
    border-radius: 10px;
    margin-top: 8px;
}

.apikey-title {
    font-size: 18px;
    font-weight: 500;
    color: black;
}

.apikey-info {
    opacity: 0.8;
    font-style: italic;
}

.btn {
    width: min(320px, 95vw);
    height: 40px;
    border: 0;
    border-radius: 10px;
    color: white;
    font-size: 18px;
    font-weight: 600;
}

.saveBtn {
    display: none;
    background: dodgerblue;
    margin-top: 32px;
}

button:disabled {
    cursor: auto;
    opacity: 0.5;
}

.cancel {
    display: none;
    background: red;
    margin-top: 18px;
}


#login {
    border: 0;
    border-radius: 16px;
    width: 419px;
}

#login::backdrop {
    background-color: rgba(0, 0, 0, 0.8);
}

.login-container {
    display: flex;
    flex-direction: column;
}

.login-title {
    font-size: 24px;
    font-weight: 600;
    color: black;
}

.phone label {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: 16px;
    font-weight: 500;
}

.phone input {
    height: 32px;
    border: 2px solid lightgray;
    border-radius: 10px;
    padding-left: 12px;
}

.login-container button {
    margin-top: 16px;
    background: dodgerblue;
    color: white;
    font-size: 16px;
    font-weight: 600;
    border: 0;
    border-radius: 10px;
    height: 32px;
}

#cancelSubscription {
    border: 0;
    border-radius: 10px;
    width: 509px;
}

#cancelSubscription::backdrop {
    background-color: rgba(0, 0, 0, 0.8);
}

.cancel-container {
    display: flex;
    flex-direction: column;
}

.cancel-title {
    font-size: 22px;
    font-weight: 600;
    color: black;
}

.cancel-btns {
    display: flex;
    gap: 16px;
    margin-top: 48px;
    margin-left: auto;

}

.cancel-btns button {
    color: white;
    font-size: 16px;
    font-weight: 600;
    border: 0;
    border-radius: 10px;
    height: 32px;
    width: 80px;
}

.cancel-yes {
    background: red;
}

.cancel-no {
    background: grey;
}

.settings-container {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

#settings {
    border: 0;
    border-radius: 16px;
    width: 509px;
}

#settings::backdrop {
    background-color: rgba(0, 0, 0, 0.8);
}

.settings-title-container {
    display: flex;
    margin-bottom: 12px;
    align-items: center;
    gap: 8px;
}

.settings-title-container img {
    height: 32px;
}

.settings-title-container button {
    background: transparent;
    border: 0;
    margin: 0;
}

.settings-title {
    font-size: 24px;
    font-weight: 600;
    color: black;
}

#settings > div > label {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

#settings > div > label span {
    font-size: 18px;
    font-weight: 500;
}

#settings > div > label :is(input[type="text"], select) {
    height: 36px;
    border: 2px solid lightgray;
    border-radius: 10px;
    padding: 0 0 0 8px;
    font-size: 14px;
}

.slider-value {
    font-size: 16px !important;
    color: black;
    margin-top: -6px;
}

#response-length-text {
    font-weight: bold !important;
}

.slider-value * {
    font-size: 16px !important;
}

.save-btn {
    background-color: dodgerblue;
    color: white;
    font-size: 18px;
    font-weight: 600;
    border: 0;
    border-radius: 10px;
    height: 32px;
    margin-top: 14px;
}
