* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body,
html {
    font-family: "League Spartan", sans-serif; 
    background-color: #fff;
    color: var(--grey);
}


:root {
    --purple: #5000A2;
    --grey: #626262;
}

img{max-width:100%;}

/* login css */

.login_wrapper {
    display: flex;
    height: 100vh;
  
}

.login_leftside{
    flex: 1;
    background-color: #7000b2;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    border-radius:0 40px 40px 0;
} 

.left-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 80%;
    gap: 50px;
}

.illustration {
    max-height: 60%;
    object-fit: contain;
}

.logo {
    max-width: 50%;
    object-fit: contain;
}

.login_rightside {
    flex: 1;
    background-color: #ffffff;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px;
    justify-content: center;
}

/* TOP-RIGHT LANGUAGE */
.language-box {
    position: absolute;
    top: 20px;
    right: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    color:var(--purple);
    z-index: 100;
}

.language-box select {
    padding: 7px 25px 7px 10px;
    border-radius: 6px;
    border: 1px solid #ddd;
    font-size: 14px;
}

.lang-icon {
    width: 25px;
    height: 21px;
}

.search_input_group .form-control {
    height: 35px;
    border-right: none;
    border-color: #ddd;
}
.search_input_group .btn {
    border: 1px solid #ddd;
    padding: 4px 9px;
    height: 35px;
}

.inputs-group .form-control.is-valid {
    border: 1px solid green;
}
.inputs-group .btn.is-valid {
    background: green;
}
.inputs-group .btn.is-valid:before {
    content: "\2713";
    font-size: 15px;
    margin-right: 4px;
}

.loading_spinner {
    color:var(--purple);
    font-size: 12px;
    width: 20px;
    height: 20px;
}


/* CARD STYLING */
.auth-card {
    width: 100%;
    max-width: 400px;
   
}

/* TABS */
.auth-header {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
}

.auth-header .tabs {
    display: flex;
    gap: 30px;
}

.auth-header .tab {
    background: none;
    border: none;
    font-weight: bold;
    font-size: 18px;
    padding-bottom: 5px;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    color: #626262;
    padding: 3px 5px;
    min-width: 80px;
}

.auth-header .tab.active {
    border-bottom: 3px solid var(--purple);
    color: var(--purple);
}

.form-group label {
    font-size: 18px;
    font-weight: normal;
    color: #626262;
    margin: 12px 0 5px 0;
}
.form-group .form-control {
    border-radius: 8px;
    height: 46px;
    font-size: 16px;
    padding: 5px 15px;
}

.btn-login {
    width: 100%;
    padding: 12px;
    margin-top: 25px;
    background-color:var(--purple);
    color: white;
    font-weight: bold;
    border: none;
    border-radius: 6px;
    font-size: 20px;
    cursor: pointer;
    font-weight: normal;
    height: 50px;
}

.btn-login:hover {
    background-color: #40057c;
}

.forgot_link{text-decoration: none; color:var(--purple); font-size: 16px; display: inline-block; padding:5px 2px;}
.register_now{color:var(--purple); font-size: 16px; text-decoration: none;font-weight: 500;text-decoration: underline;}

.links {
    text-align: center;
    font-size: 16px;
} 

.signup_steps ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    justify-content: center;
}
.signup_steps .sign_step_b{
    width: 80px;
    text-align: center;
}
.signup_steps ul li span {
    background: #D3D5D9;
    display: inline-flex;
    width: 45px;
    height: 45px;
    text-align: center;
    border-radius: 30px;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 500;
    line-height: 41px;
    border: 1px solid white;
    padding: 8px;
    box-shadow: 0px 0px 0px 4px #fff inset;
    position: relative; z-index: 2;
}
.signup_steps ul li label {
    font-size: 12px;
    color: #808080;    margin-top: 5px;
    font-weight: normal;    line-height: 14px;
}
.signup_steps ul li{position: relative; width: 40%;
    display: flex;
    justify-content: center;}
.signup_steps ul li::after {
    content: "";
    width: 50%;
    height: 2px;
    background-color:#D3D5D9;
    position: absolute;
    right: 0;
    top: 21px;
    z-index: 1;
}
.signup_steps ul li::before {
    content: "";
    width: 50%;
    height: 2px;
    background-color: #D3D5D9;
    position: absolute;
    left: 0;
    top: 21px;
    z-index: 1;
}
.signup_steps ul li:first-child:before{content:none;}
.signup_steps ul li:last-child:after{content:none;}
.signup_steps ul li.active span{border:1px dashed var(--purple); background-color:#DDBDFF; color: var(--purple);}
.signup_steps ul li.active label{color: var(--purple); font-weight: 500;}


.inputs-group {
    position: relative;
}
.inputs-group .form-control{padding-right: 96px;}
.inputs-group .btn {
    position: absolute;
    top: 4px;
    right: 4px;
    background: #ddd;
    background: var(--purple);
    color: #fff;
    font-size: 15px;
    border-radius: 8px;
    padding: 7px 12px;
}


.main-wrapper {
    display: flex;
}


.sidebar {
    width: 230px;
    background-color:var(--purple);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: 100vh;
    color: #fff;
}

.logo-section {
    text-align: center;
    width: 100%;
    padding: 15px;
    margin-bottom: 10px;
}

.sidebar-logo {
    max-width: 195px;
    margin: 0 auto;
}

.sidebar_menu {
    display: flex;
    flex-direction: column;
    width: 100%;
}
.sidebar_menu ul {
    margin: 0;
    list-style: none;
    padding: 0 12px;
}
.sidebar_menu ul li {
    margin-bottom: 3px;
}
.sidebar_menu .menu-item {
    padding: 10px 15px;
    color: #B17CFF;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    border-radius: 10px;
    height: 50px;
    line-height: 18px;
}

.sidebar_menu .menu-item:hover,
.sidebar_menu .menu-item.active {
    background-color: #2D005B;
    color: #fff;
}
.sidebar_menu .menu-item .menu_icon svg path{stroke:#B17CFF;}
.sidebar_menu .menu-item.active .menu_icon svg path{stroke:#fff;}

.logout_btn_group {
    position: absolute;
    bottom: 5px;
    left: 0;
}

.menu_icon {
    width: 20px;
    height: 20px;
    display: inline-block;
}
.menu_icon svg{width:100%;}

.dashboard_content {
    flex: 1;
    background: #fff;
    position: relative;
}

.dashboard_head{
    display: flex;
    justify-content: right;
    align-items: center;
    border-bottom: 1px solid #e0e0e0;
    background-color: #fff;
    height: 70px;
}

.content_container {
    padding: 20px;
}

.wallet_sect {
    padding: 9px 12px;    margin-right: 15px;
}
.wallet-icon {
    width: 32px;
    height: 30px;
    background-color: #7000B2;
    border-radius: 5px 0 0 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3px;
}


.wallet-amount {
    border: 1px solid #d9d9d9;
    display: flex;
    align-items: center;
    border-radius: 5px;
    height: 30px;
}
.wallet_price {
    font-size: 20px;
    font-weight: 600;
    padding: 1px 12px;
    display: flex;
    align-items: center;
    line-height: 31px;
}
.wallet_price small {
    font-size: 16px;
    font-weight: 400;
    margin-left: 5px;
}

.wallet-label {
    font-size: 15px;
    color: #666;
    margin-top: 5px;
    display: block;
    text-align: center;
    line-height: 16px;
}

.user_profile {
    padding: 9px 12px;
    display: flex;
    flex-direction: column;
    align-items: center;margin-right: 10px;
}
.user_avatar {
    display: inline-flex;
    width: 30px;
    height: 30px;
    background: #ddd;
    border-radius: 40px;
}
.user_label {
    display: block;
    font-size: 15px;
    color: #666;
    margin-top: 5px;
    text-align: center;
    line-height: 16px;
}

.profile {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #333;
}

.center-message {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.instruction-text {
    color: red;
    font-weight: bold;
}

.card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.05);
}

.card-header{background-color: transparent;}
.card-footer{background-color: transparent;}
.total_abusers_box {
    font-size: 20px;
    color: #626262;
    display: flex;
    align-items: center;
    gap: 15px;
}
.total_abusers_text {
    color: #5000A2;
    font-size: 40px;
    line-height: 46px;
}
label.inline-flex {
    margin: 5px 0px;
}

.donut_info p {
    font-size: 20px;
    color: #363636;
    font-weight: 300;
    margin-bottom: 10px;
}
.donut_info h2 {
    font-size: 60px;
    color: #363636;
    line-height: 55px;
    margin-bottom: 12px;
}

.note-label {
    color: red;
    font-weight: bold;
}



.btn-download {
    background-color: white;
    border: 2px solid #7000b2;
    color: #7000b2;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-download i {
    margin-left: 10px;
}

.btn-download:hover {
    background-color: #7000b2;
    color: #fff;
}

input[type="file"] {
    padding: 15px;
    background-color: #7000b2;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
}

.donut-card {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    border-radius: 10px;
    margin: 20px;
    background-color: #fff;
}

.donut-left img {
    width: 220px;
}

.donut-right {
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
}

.donut_info_list {
    list-style: none;
    padding: 0;
    margin: 0 0 10px 0;
    display: flex;
    flex-wrap: wrap;
    max-width: 300px;
}

.donut_info_list li {
    display: flex;
    align-items: flex-start;
    font-size: 16px;
    width: 50%;
    margin-bottom: 10px;
    line-height: 21px;
}

.donut_info_list .dot {
    width: 18px;
    height: 18px;
    border-radius: 3px;
    margin-right: 10px;
}
.btn {
    padding: 5px 14px;
}
.btn-primary {
    color: #fff;
    background-color:var(--purple);
    border-color:var(--purple);
    font-weight: 500;
}
.btn-primary:hover, .btn-primary:focus{
    background-color:#7000b2;
    border-color:#7000b2;
}
.btn-outline-primary {
    color:var(--purple);
    border-color:var(--purple);
    font-weight: 500;
}
.btn-outline-primary:hover, .btn-outline-primary:focus{
    background-color:#7000b2;
    border-color:#7000b2;
    color:#fff;
}
.btn-group-lg>.btn, .btn-lg {
    padding: 9px 16px 7px 16px;
    font-size: 19px;
    border-radius: .3rem;
}
.btn-outline-primary .btn-icon{margin-left: 15px;}
.btn-outline-primary:hover .btn-icon svg path, .btn-outline-primary:focus .btn-icon svg path{
    stroke: #fff;
}
.input-group .form-control {
    line-height: 1.1rem;
}

.btn-outline-primary.disabled, .btn-outline-primary:disabled{color:var(--purple);}

.btn-primary.disabled, .btn-primary:disabled {
    color: #fff;
    background-color:var(--purple);
    border-color:var(--purple);
}
.w_infin {
    font-size: 48px;
    height: 20px;
}
.custom_tooltip {
    color: #626262;
    font-weight: 700;
    font-size: 16px;
    display: flex;
    align-items: center;
    line-height: 18px;
    margin: 6px 0 12px;
    gap: 7px;
}
.custom_tooltip span {
    position: relative;
    top: -2px;
}
.c_qu_icon {
    border: none;
    background: transparent;
    top: -2px; position: relative;
}
.c_qu_icon::before{content:none!important;}
.custom_tooltip .dropdown-menu {
    background: #333;
    padding: 10px 12px;
    max-width: 130px;
    color: #fff;
    font-weight: normal;
    font-size: 12px;
    height: 150px;
    overflow-y: auto;
}
.card-title{
    font-size: 26px;
    color: #626262;
    margin: 5px 0 8px 0;
    font-weight: 400;
}
.card-subtitle{
    color: #626262;
    font-size:18px;
}

.faq_title {
    font-size: 30px;
    margin-bottom: 15px;
    color: #363636;
}
.faq_tabs {
    border: 1px solid #d9d9d9;
    border-radius: 10px;
    padding: 15px 25px;
    margin-bottom: 15px;
}
.faq_tab_body {
    font-size: 18px;
    color: #666;
    margin-top: 10px;
}
.faq_tab_btn {
    display: flex;
    width: 100%;
    text-align: left;
    border: navajowhite;
    background: transparent;
    font-size: 24px;
    color: #626262;
    justify-content: space-between;
    align-items: center;
}
.faq_t_icon {
    width: 24px;
    height: 24px;
    font-size: 38px;
    line-height: 26px;
    text-align: center;
    color: #5000A2;
    font-weight: 300;
}
.purple {
    background-color: #7000b2;
}

.black {
    background-color: #000;
}

.gray {
    background-color: #aaa;
}

.light-gray {
    background-color: #ccc;
}

.filter-row {
    display: flex;
    gap: 10px;
    margin: 10px 20px;
    flex-wrap: wrap;
}

.filter-row input {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    min-width: 160px;
}


.cards_info_wrap {
    display: flex;
    gap: 20px;
}
.card_info_block {
    border-radius: 5px;
}
.card_info_block .card-header {
    display: flex;
    justify-content: space-between;align-items: flex-start;padding: 10px 12px;
}
.card_info_block .card-body{padding: 10px 12px;}
.card_info_block .card-header .brand-name {
    display: block;
    font-size: 16px;
    color: #363636;
    font-weight: 500;
}
.card_info_block .card-header .brand-name strong {
    display: block;
    font-size: 20px;
    font-weight: 600;
    color: #363636;
    line-height: 20px;
    padding-top: 2px;
}
.card_info_block .card-header .btn {
    height: 30px;
    font-size: 14px;
    padding: 5px 12px;
}
.donut_info_list.small {
    margin: 0;
}
.donut_info_list.small li {
    font-size: 14px;
    line-height: 16px;
    margin-bottom: 12px;
}
.donut_info_list.small .dot {
    width: 14px;
    height: 14px;
}

.brand-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    padding: 20px;
}

.brand-card {
    flex: 1 1 220px;
    background: #fff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.05);
}

.brand-card .brand-name {
    font-weight: 600;
    margin-bottom: 10px;
}

.brand-card .btn-download.small {
    padding: 6px 10px;
    font-size: 12px;
}

.styled-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
}

.styled-table th,
.styled-table td {
    padding: 10px;
    border: 1px solid #ddd;
    font-size: 14px;
}

.brand-tag {
    background: red;
    color: white;
    padding: 4px 6px;
    border-radius: 5px;
    margin: 2px;
    font-size: 11px;
    display: inline-block;
}

.filter-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.filter_search_input input{

  background-image: url("../images/search_icon.svg");
  background-repeat: no-repeat;
  background-position-x: calc(100% - 8px);
  background-position-y: 9px;
  padding-right: 32px;
}

.search-box,
.date-input {
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 14px;
    min-width: 160px;
}


.dropdown-container {
    position: relative;
}

.dropdown-container .dropdown-toggle {
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 6px 10px;
    cursor: pointer;
    font-size: 15px;
}
.dropdown-container .dropdown-toggle::after{position: relative; top:2px;}

.dropdown-container .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 4px;
}

.dropdown-container .dropdown-menu label {
        font-size: 15px;
    display: flex;
    gap: 8px;
    align-items: center;
    line-height: 25px;
} 

.add_abu_title {
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 10px;
    color:#626262;
}
.note-label {
    font-size: 18px;
    font-weight: 400;
     color:#626262;
}

.btn-search {
    background-color: #7000b2;
    color: white;
    border: none;
    padding: 10px 16px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.btn-search:hover {
    background-color: #58008f;
}

.brand-chip {
    background-color: red;
    color: white;
    border-radius: 20px;
    padding: 4px 12px;
    font-size: 12px;
    margin: 2px;
    display: inline-block;
}

.pagination {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.btn-next {
    background: white;
    border: 2px solid #7000b2;
    color: #7000b2;
    padding: 8px 20px;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
}

.btn-next:hover {
    background-color: #7000b2;
    color: white;
}

.user-details-wrapper {
    padding: 2rem;
}

.user-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.user-header {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 1rem;
}

.profile-pic-placeholder {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #ddd;
}

.abuse-category {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    margin-top: 0.5rem;
    flex-wrap: wrap;
}

.abuse-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    display: inline-block;
}

.abuse-label {
    font-size: 14px;
    margin-right: 10px;
}

.brand-tags,
.brand-list {
    margin-top: 0.5rem;
    display: flex;
    gap: 0.4rem;
    flex-wrap: wrap;
}

.brand-chip,
.brand-pill {
    background-color: red;
    color: white;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 12px;
}

.meta-info {
    text-align: right;
    font-size: 14px;
}

.btn-delete {
    background: white;
    border: 1px solid #7000b2;
    color: #7000b2;
    padding: 6px 12px;
    border-radius: 6px;
    margin-top: 10px;
    cursor: pointer;
}

.user-body {
    display: flex;
    gap: 2rem;
    margin-top: 1rem;
}

.left-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 14px;
}

.right-col {
    flex: 1;
}

.description-card {
    border: 1px solid #ccc;
    border-radius: 10px;
    padding: 1rem;
    font-size: 14px;
    background-color: #f8f8f8;
}

.abuser-link {
    color: #7000b2;
    text-decoration: none;
    font-weight: 500;
}

.abuser-link:hover {
    text-decoration: underline;
}

/* ────────────────────────────────────────────────────────────── */
/* Dashboard: donut‐card grid layout (2 columns, no wrapping)   */
/* ────────────────────────────────────────────────────────────── */
.card.donut-card {
    display: grid;
    grid-template-columns: 375px 1fr;
    align-items: center;
    gap: 2rem;
    padding: 1.5rem;
    width: 990px;
    /* match your other .card padding */
}

/* force the left panel to the exact 315×315 size */
.card.donut-card .donut-left {
    width: 315px;
    height: 315px;
}

/* have the canvas fill its container exactly */
.card.donut-card .donut-left canvas {
    width: 100% !important;
    height: 100% !important;
    display: block;
}

/* right panel flows naturally */
.card.donut-card .donut-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
}


.filter-bar h3 {
    font-size: 30px;
    color: #363636;
    margin: 0;
}
.filter-bar h4 {
    margin: 0;
    font-size: 18px;
        line-height: 32px;
    color: #363636;
}
.filter-row {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: nowrap;
}

.filter-row input[type="text"] {
    flex: 0 0 240px;
    height: 40px;
    padding: 0 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
}

.filter-row input[type="date"] {
    flex: 0 0 120px;
    height: 40px;
    padding: 0 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
}

.filter-row .btn-download {
    flex: 0 0 auto;
    height: 40px;
    padding: 0 24px;
    border: 2px solid #7000b2;
    border-radius: 8px;
    background: #fff;
    color: #7000b2;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.filter-row .btn-download:hover {
    background-color: #7000b2;
    color: #fff;
}


.custom_table {
    border: 1px solid #ddd;
    font-family: 'Inter';
}
.custom_table thead th{border-color:#ddd!important;}
.custom_table thead th {
    font-size: 13px;
    font-weight: 600;
    padding: 8px 10px;
}
.custom_table tbody td{
    font-size: 13px;
    padding: 8px 10px;vertical-align: middle;
}
.custom_table .btn-sm {
    font-size: 12px;
    padding: 3px 10px;
}
/* make the entire form a little more breathable */
.auth-card .auth-body {
    display: flex;
    flex-direction: column;

}

/* style the validation summary so it doesn’t shoot to the top */
.auth-body .validation-summary-valid,
.auth-body .validation-summary-errors {
    list-style: none;
    padding-left: 0;
    margin: 0;
    color: #d9534f;
    /* bootstrap danger red */
    font-size: 0.9rem;
}

/* each “row” with a label+input+button */
.auth-body .otp-row {
    display: flex;
    gap: 0.5rem;
    align-items: flex-end;
}

/* make inputs stretch and buttons sit naturally beside them */
.auth-body .otp-row input {
    flex: 2;
    min-width: 0;
    /* allow flex-shrink */
}

.auth-body .otp-row button {
    flex: 1;
    min-width: 0;
    /* allow it to compress */
}

/* ensure all text inputs in the form fill their container */
.auth-body input[type="email"],
.auth-body input[type="text"],
.auth-body input[type="password"] {
    width: 100%;
}

/* labels sit right above their inputs */
.auth-body label {
    display: block;
    margin-bottom: 0.25rem;
    font-weight: 600;
}

/* reduce the gap above the “Submit” button once OTP is validated */
.auth-body .btn-login[type="submit"] {
    margin-top: 0.5rem;
}

/* Scoped CSS for CrossBrandData.razor */
.cross-brand-data-page {
  
}

/* Headings */
.cross-brand-data-page h2 {
  font-size: 1.875rem; /* 30px */
  font-weight: 600;
  margin-bottom: 8px;
  color: #111827;
}
.cross-brand-data-page p {
  font-size: 0.875rem;
  color: #6B7280;
  margin-bottom: 16px;
}

/* Grid layout spacing override */
.cross-brand-data-page .grid {
  grid-gap: 16px;
  margin-bottom: 24px;
}

/* Inputs & selects */
.cross-brand-data-page select,
.cross-brand-data-page input[type="date"] {
  width: 100%;
  padding: 8px;
  border: 1px solid #D1D5DB;
  border-radius: 6px;
  background-color: #F9FAFB;
  font-size: 0.875rem;
  color: #1F2937;
}
.input-select {
  /* if using a helper class */
  width: 100%;
}

/* Radio group spacing */
.cross-brand-data-page .input-radio-group {
  display: flex;
  gap: 12px;
}
.cross-brand-data-page input[type="radio"] {
  accent-color: #6B21A8;
}

/* Summary & download */
.cross-brand-data-page .text-3xl {
  font-size: 2rem; /* 32px */
}
.cross-brand-data-page .text-purple-600,
.cross-brand-data-page button {
  color: #FFFFFF;
  background-color: #6B21A8;
}
.cross-brand-data-page button {
  padding: 8px 16px;
  border: none;
  border-radius: 6px;
  font-weight: 500;
  cursor: pointer;
}
.cross-brand-data-page .flex {
  align-items: center;
}

/* FAQs */
.cross-brand-data-page hr {
  border-color: #E5E7EB;
  margin: 32px 0;
}
.cross-brand-data-page .faq-section h3 {
  margin-bottom: 16px;
}
.cross-brand-data-page .faq-section .border {
  border: 1px solid #E5E7EB;
  border-radius: 6px;
}
.cross-brand-data-page .faq-section button {
  width: 100%;
  background: none;
  border: none;
  padding: 12px;
  font-size: 1rem;
  font-weight: 500;
  color: #111827;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.cross-brand-data-page .faq-section .px-4 {
  padding-left: 16px;
  padding-right: 16px;
}
.cross-brand-data-page .faq-section .py-2 {
  padding-top: 8px;
  padding-bottom: 8px;
}
.cross-brand-data-page .faq-section .text-gray-700 {
  color: #374151;
}


select {
  padding: 10px;
  padding-right: 30px;

  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-image: url('../images/f_arrow_icon.svg');
  background-repeat: no-repeat;
  background-position: right .7em top 50%;
  background-size: .65em auto;
}


.email_links {
    position: fixed;
    bottom: 12px;
    right: 15px;
}
.email_links a{color: var(--purple); font-size: 16px;}
.email_link_sidebar a {
    color: #fff;
    font-size: 16px;
    text-decoration: none;
}
.email_link_sidebar {
    display: block;
    text-align: center;
    margin-bottom: 10px;
}



.profile_avatar_block {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.profile_avatar_b {
    width: 80px;
    height: 80px;
    display: inline-block;
    background: #D9D9D9;
    border-radius: 99px;
}
.profile_brand_info {
    list-style: none;
    padding: 0;
    margin: 0 0 12px 0;
    display: flex;    justify-content: space-between;
}
.profile_brand_info label {
    font-size: 16px;
    color: #626262;
    display: block;    line-height: 18px;
}
.profile_brand_info li span {
    font-size: 32px;
    line-height: 40px;
    color: #626262;
}
.profile_brand_donut {
    flex-wrap: inherit;
    max-width: none;
    margin: 0;
}
.profile_brand_donut li{margin: 0;}

.profile_lables {
    margin: 10px 0;
    color: #626262;
}
.profile_lables label {
    font-weight: 600;
    min-width: 140px;
    display: inline-block;
}
.profile_edit_l {
    font-size: 16px; color: var(--purple);
}