:root {
    --color-1: #6439e7; /* Majestic Purple */
    --color-2: #9289ff; /* Lavender Blue */
    --color-3: #d3dfff; /* Light Periwinkle */
    --color-4: #ff4f83; /* Fiery Rose */
}

body {
    font-family: "DM Sans", sans-serif;
}

label {
    font-weight: 400;
    font-size: 15px;
}

.custom-input {
    height: 50px;
    border-radius: 5px;
}

.custom-input::placeholder {
    font-size: 15px;
}

.custom-input {
    font-size: 15px !important;
}

input[type="text"][disabled],
input[type="text"][readonly] {
    background-color: #fff !important;
}

textarea {
    resize: none;
    font-size: 14px !important;
}

textarea[disabled],
textarea[readonly] {
    background-color: #fff !important;
    font-size: 14px;
}

.form-control:focus {
    border-color: #ddd;
    box-shadow: none;
    outline: none;
}

.form-control {
    border: 1px solid #ddd !important;
    box-shadow: none !important;
}

/* Style for scroll bar  */
::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px #f8f4f1;
    border-radius: 0px;
}

::-webkit-scrollbar-thumb {
    background: var(--color-1);
    border-radius: 0px;
}

::-webkit-scrollbar:horizontal {
    height: 5px;
    background-color: transparent;
}

::-webkit-scrollbar-thumb:horizontal {
    background: var(--color-1);
    border-radius: 50px;
}

::-webkit-scrollbar-track:horizontal {
    box-shadow: inset 0 0 5px #fff;
    border-radius: 50px;
}

.link_span {
    color: var(--color-4);
    cursor: pointer;
}

.uam_button {
    background-color: var(--color-1);
    border: none;
    border-radius: 5px;
    color: white;
    padding: 14px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    width: 100%;
}

.floating-error {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #f44336;
    color: white;
    padding: 20px;
    font-size: 15px;
    text-align: center;
    z-index: 9999;
    line-height: 1.8em;
}

.floating-error.show {
    display: block;
}

.floating-success {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #4caf50;
    color: white;
    padding: 20px;
    font-size: 15px;
    text-align: center;
    z-index: 9999;
    line-height: 1.8em;
}

.floating-success.show {
    display: block;
}

.onboarding_nav {
    padding: 22px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.onboarding_nav img {
    height: 40px;
}

.uam_hero {
    font-size: 24px;
    font-weight: 600;
    padding-top: 50px;
    padding-bottom: 20px;
}

.uam_1 {
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    padding-top: 20px;
}

.uam_2 {
    font-size: 15px;
    font-weight: 600;
    text-align: center;
    padding-top: 10px;
    line-height: 1.8em;
}

.uam_3 {
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    padding-top: 20px;
}

.uam_span_1 {
    color: var(--color-4);
    cursor: pointer;
}

.uam_span_2 {
    color: var(--color-4);
    cursor: pointer;
}

.result_card_container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 0 auto;
}

.result_card {
    background-color: #fff;
    padding: 10px 10px 0px 10px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

.result_card_p1 {
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--color-1);
}

.result_card_p2 {
    font-size: 16px;
    font-weight: 800;
    color: var(--color-4);
}

.result_card_p3 {
    font-size: 13px;
    font-weight: 600;
}

.dashboard_hero {
    font-size: 18px;
    font-weight: 800;
}

.dashboard_hero span {
    font-size: 13px;
}

.dashboard_hero_1 {
    font-size: 16px;
    font-weight: 800;
}

.dashboard_div_button {
    background-color: var(--color-1);
    border: none;
    border-radius: 5px;
    color: white;
    padding: 14px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
}

.dashboard_div_default {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

.dashboard_div_developer {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin-bottom: 20px;
}

.dashboard_div_developer_api {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 20px 20px 10px 20px;
    margin-bottom: 20px;
}

.api_credentials_container {
    display: flex;
    justify-content: space-between;
    width: 100%;
    box-sizing: border-box;
}

.api_data {
    flex: 1;
    box-sizing: border-box;
    font-size: 15px;
}

.api_data_1 {
    font-weight: 600;
}

.api_data span {
    margin-right: 10px;
}

.api_data span:last-child {
    margin-right: 0;
}

.api_data_2_span {
    cursor: pointer;
    color: var(--color-1);
}

pre {
    background-color: #fff;
    border: 1px solid #fff;
    font-size: 16px !important;
}

pre:last-of-type {
    margin-bottom: 10px;
}

.data_div_default {
    background-color: #fff;
    padding: 20px 20px 10px 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-wrap: wrap;
    line-height: 2em;
    font-size: 15px;
}

.data_name,
.data_value {
    width: 50%;
}

.data_name_1 {
    font-weight: 600;
}

.plans_card_container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 0 auto;
}

.plan_card {
    background-color: #fff;
    padding: 20px 10px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

.plan_card_p1 {
    font-size: 16px;
    font-weight: 800;
    padding-bottom: 10px;
}

.plan_benefit_container {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}
.plan_validity,
.plan_price {
    width: 48%;
    line-height: 2em;
}

.plan_validity_span_1,
.plan_price_span_1 {
    text-transform: uppercase;
}

.plan_validity_span_2,
.plan_price_span_2 {
    font-size: 15px;
    font-weight: 800;
}

.plan_button {
    background-color: var(--color-1);
    border: none;
    border-radius: 5px;
    color: white;
    padding: 8px 32px;
    width: 100%;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
}

.table_options {
    margin-bottom: 20px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.search-input {
    width: 240px;
    margin-bottom: 0;
}

.table_options_button {
    background-color: var(--color-1);
    border: none;
    border-radius: 5px;
    color: white;
    padding: 13px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 15px;
    margin-left: 10px;
}


table th:first-child {
    border-radius: 10px 0 0 0px;
}

table th:last-child {
    border-radius: 0 10px 0px 0;
}

.table_bg {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.table_div {
    overflow-x: auto;
    border-radius: 10px;
}

table {
    border-collapse: collapse;
    width: 100%;
}

th {
    text-align: left;
    padding: 10px 20px 10px 20px;
    font-weight: 600;
}

td {
    text-align: left;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
    font-weight: 400;
}

.trc {
    background-color: #fff;
    font-size: 15px;
    border-bottom: 1px solid #ddd;
}

.tdc {
    font-size: 15px;
}

a.link_a {
    color: var(--color-1);
    text-decoration: none;
}

.div_no_data {
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 20px;
}

.div_no_data_p1 {
    font-size: 15px;
    font-weight: 600;
    text-align: center;
}

@media (max-width: 768px) {
    .result_card_container {
        grid-template-columns: repeat(2, 1fr);
    }

    .data_div_default {
        display: flex;
        flex-wrap: wrap;
        line-height: 1.2em;
    }

    .data_name,
    .data_value {
        width: 100%;
    }

    .data_value {
        margin-bottom: 15px;
    }

    .data_value:last-child {
        margin-bottom: 0px;
    }

    .plans_card_container {
        grid-template-columns: repeat(1, 1fr);
    }

    .table_options {
        flex-direction: column;
        align-items: stretch;
    }

    .search-input {
        width: 100%;
    }

    .table_options_button {
        width: 100%;
        margin-left: 0;
        margin-top: 10px;
    }

}
