:root{
    --bs-body-bg: #F3F8F7;
    --bs-card-bg: var(--card-gradient) !important;
    --primary-color:#082A2B;
    --secondary-color:#0099B4;
    --muted-color:#6B7280;
    --pwa-bg-color: #026569;
    --gray-color:#1F1F1F;
    --input-gradient: white;
    --primary-border-color: #ced4d5;
    --secondary-border-color: var(--secondary-color);
    --asterisk-color:#FF6B6B;
    --bs-body-color:black;
    --bs-tertiary-bg: var(--gray-color) !important;
    --blue-card-bg: rgba(0, 153, 180, 0.1);

}


body{
    font-family: 'Inter', sans-serif;
    background: var(--bs-body-bg);
}

img {
  -webkit-user-drag: none;   /* Chrome, Safari */
  -khtml-user-drag: none;    /* Old Safari */
  -moz-user-drag: none;      /* Firefox */
  -o-user-drag: none;        /* Old Opera */
  user-drag: none;
  user-select: none;         /* Prevent selection highlight */
}

.nav{
    --bs-nav-link-padding-y: .2rem;
    font-size: 0.9rem;
}


.navbar-nav{
    --bs-navbar-color:white;
}

.navbar-brand{
    --bs-navbar-brand-color:white
}

.nav-link:hover{
    color: var(--secondary-color);
}

#sidebar .nav-item:has(.nav-link) {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;

}

#sidebar .nav-item:has(.nav-link)::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,153,180,0.5) 0%, rgba(0,153,180,0.25) 50%, transparent 100%);
    transition: left 0.3s ease;
    z-index: 0;
}

#sidebar .nav-item:has(.nav-link):hover {
    background: linear-gradient(to right, rgba(0,153,180,0.5) 0%, rgba(0,153,180,0.25) 50%, transparent 100%);
    transform: translateX(4px);
}

#sidebar .nav-item:has(.nav-link):hover::before {
    left: 0;
}

#sidebar .nav-item:has(.nav-link):hover .nav-link {
    font-weight: 600;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
    background: none !important;
}

/* Sidebar active page */
#sidebar .nav-item:has(.nav-link.active) {
    background: linear-gradient(to right, rgba(0,153,180,0.65) 0%, rgba(0,153,180,0.35) 55%, transparent 100%);
}

#sidebar .nav-item:has(.nav-link.active)::before {
    left: 0;
}

#sidebar .nav-link.active {
    font-weight: 700;
    color: #ffffff;
    position: relative;
    z-index: 1;
}

#sidebar .nav-link.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--secondary-color);
}

.bg-green{
    background: var(--primary-color);
    color:white;
}

.bg-gray{
    background: var(--gray-color) !important;
}

.bg-black{
    background: black !important;
}


.text-secondary-2{
    color: var(--secondary-color) !important;
}

.text-muted{
    color: var(--muted-color) !important;
}

.input-group-text{
    background-color:white !important;
}




.card-shadow{
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}


.blue-card{
    background-color: var(--blue-card-bg);
    border-radius: 12px;
    padding: 1rem;
}

.primary-card{
    background-color: var(--primary-color);
    color:white;
}

.icon-gray{
    filter: brightness(0) saturate(100%) invert(76%) sepia(9%) saturate(221%) hue-rotate(131deg) brightness(93%) contrast(91%);
}

.login-card{
    padding: 3vw 5vw;
    margin-top:4vw;
}

.login-card .card-header {
    border-bottom: none;
    padding-bottom:1rem;
}

.login-card .card-header h2{
    font-weight: 600;
}

.login-card .login-btn-container{
    text-align: center;
}



.login-card .login-btn-container .btn, .default-btn-p{
    background: var(--secondary-color);
    border:none;
    color:black;
    width:auto !important;
    font-weight: 600;
    padding: 0.7rem 3rem;
    border-radius: 12px;
    margin: 1rem auto 0;
}

.forgot-password-link {
    color: #6c757d;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 400;
}

.forgot-password-link:hover {
    text-decoration: underline;
    color: #363f46;
}




.form-input {
    background: var(--input-gradient);
    border-top: 1px solid var(--primary-border-color);
    border-bottom: 1px solid var(--primary-border-color);
    border-left:none;
    border-right:none;
    border-radius: 12px;
    color: white !important;
    padding: 0.75rem 1rem;
    width: 100%;
    transition: all 0.3s ease;
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.select-wrapper {
    position: relative;
}


.select-wrapper .select-arrow {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
    pointer-events: none;
    z-index: 10;
}

.select-wrapper.is-invalid-dropdown select {
    border-color: var(--asterisk-color) !important;
    box-shadow: 0 0 0 1px var(--asterisk-color) !important;
}

.select-wrapper.is-invalid-dropdown select:focus {
    border-color: var(--asterisk-color) !important;
    box-shadow: 0 0 0 1px var(--asterisk-color) !important;
}

.custom-multiselect.is-invalid-dropdown {
    border: 1px solid var(--asterisk-color) !important;
    border-radius: 8px;
    box-shadow: 0 0 0 1px var(--asterisk-color) !important;
}



select.form-input option:disabled {
    display: none;
}

select.form-input option[value=""]:disabled {
    color: rgba(255, 255, 255, 0.5);
}

.password-input-wrapper {
    position: relative;
}

.password-input-wrapper .password-toggle {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    font-size: 1.2rem;
    z-index: 10;
    transition: color 0.3s ease;
}

.password-input-wrapper .password-toggle:hover {
    color: rgba(255, 255, 255, 0.8);
}

.password-input-wrapper .form-input {
    padding-right: 3rem;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-border-color);
    background-color: rgba(60, 60, 60, 0.8);
}

.form-input.is-invalid {
    border-color: rgba(220, 53, 69, 0.6);
}

.form-check{
    padding-left:1.5em !important;
    cursor: pointer;
}

.form-check-input {
    padding:0.5rem;
    border:2px solid var(--primary-color);
    border-radius: 10px;
    cursor: pointer;
    box-shadow: none !important;
    margin:0 0.5rem 0 -.5rem !important;
}

.form-check-input:checked{
    background: var(--primary-color);
    border:2px solid var(--primary-color);

}

.statistics-section {
    margin-bottom: 2rem;
    border-radius: 10px;
    overflow: hidden;
    background: #1F1F1F;
}

.statistics-title {
    background-color: var(--primary-color);
    color: white;
    text-align: center;
    padding: 0.5rem;
    font-weight: 500;
    font-size: 2rem;
}

.acc-section {
    margin-bottom: 2rem;
}

.sec-title {
    font-family: 'Inter', sans-serif;
    color: var(--primary-color);
    font-size: 1.6rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-align: left;
    line-height: 1;
}

.acc-cards {
    padding: 0;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

#campaign-acc-cards {
    grid-template-columns: repeat(3, 1fr);
}

/* ========== OVERVIEW DROPDOWN ========== */
.dropdown-menu {
    border: 1px solid #e0e0e0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding:0.5rem;
    min-width: 250px;
    background: var(--bs-body-bg);
}

.dropdown-menu .dropdown-item {
    padding: 0.5rem 1rem;
    color: var(--primary-color);
    font-size: 0.9rem;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    text-decoration: none;
}

.dropdown-item{
    cursor: pointer;
}

.dropdown-item:hover, .dropdown-item:hover span  {
    background:transparent;
    color: var(--secondary-color);
}

.dropdown-menu li:not(:last-child){
    border-bottom: 1px solid #B8B8B8;
}

.navbar li{
    border-bottom:none !important;
}


.dropdown-menu .dropdown-item a {
    font-size: 0.9rem !important;
}

.dropdown-menu .dropdown-item:hover {
    background-color: #f8f9fa;
}

.dropdown-menu .dropdown-item:hover a {
    color: var(--primary-color);
}


.dropdown-menu .dropdown-item i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.acc-card {
    background: white;
    border-radius: 20px;
    border: 2px solid var(--primary-color);
}

.acc-card:not(.acc-card-featured) {
    grid-column: span 1;
}

.acc-card-featured {
    grid-column: span 2;
    background-image:url("/img/card-bg-1.svg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
    border: 2px solid #FFFFFF;
    color: #FFFFFF;

}

.acc-card-body {
    position: relative;
    z-index: 1;
}

.acc-card-featured .acc-card-body {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.acc-label {
    display: block;
    color: #1F1F1F;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.acc-sub-label {
    font-size: 0.75rem;
    line-height:1;
}

.acc-value {
    display: block;
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: 500;
    margin: 0;
    line-height:1;
}

.acc-featured-text {
    color:white;
}



.acc-btn {
    background: #08E5D1;
    color: var(--primary-color);
    border: none;
    border-radius: 8px;
    padding: 0.625rem 2rem;
    font-weight: 600;
    font-size: 1.15rem;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
    text-align: center;
}

.acc-btn:hover {
    background: #08E5D1;
    transform: translateY(-1px);
}

/* Install Button - "Buy Installs" style */
.install-btn {
    background: #003F39;
    color: #ffffff;
    border: none;
    border-radius: 14px;
    padding: 0.5rem;
    font-weight:600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    text-decoration: none;
}

.install-btn:hover {
    background: #0e7569;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.install-btn:active {
    transform: translateY(0);
}

.install-btn img {
    color: #08E5D1;
    font-size: 1rem;
    flex-shrink: 0;
    width: 16px;
    height: 16px;
}

.grw-section {
    margin-bottom: 2rem;
}

.grw-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.grw-card {
    display: flex;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.grw-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.grw-content {
    flex: 0 0 60%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.grw-title {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 0.75rem 0;
}

.grw-desc {
    color: var(--primary-color);
    font-size: 1rem;
    line-height: 1.5;
    margin: 0 0 1rem 0;
}

.grw-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 0.45rem 1rem;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
    text-decoration: none;
}

.grw-btn:hover {
    background: #0A3C3E;
    transform: translateY(-1px);
}

.grw-icon {
    flex: 0 0 40%;
    background-image:url("/img/card-bg-2.svg");
    background-size:cover;
    background-position:center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    clip-path: ellipse(100% 100% at 100% 50%);
    padding-left:0.5rem
}

.grw-icon img {
    width: 40%;
    min-width:90px;
    height: auto;
    object-fit: contain;
}

.tp-section {
    margin-bottom: 2rem;
}

.tp-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;

}

.tp-card-wrapper {
    display: flex;
    flex-direction: column;
}

.tp-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    height:100%;
}

.tp-card-inner {
    display: flex;
    height:100%;
}

.tp-left {
    flex: 1;
    background: var(--primary-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap:0.2rem;
}

.tp-item {
    display: flex;
    flex-direction: row;
    gap: 0.2rem;
    align-items: baseline;
}

.no-wrap{
   white-space: nowrap;
}

.tp-value {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;

}

.tp-right {
    flex: 0 0 20%;
    display: flex;
    background: var(--pwa-bg-color);
    align-items: center;
    justify-content: center;
}

.tp-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.tp-logo img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.tp-crown {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.tp-brand-large {
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.tp-brand-small {
    color: var(--primary-color);
    font-size: 1.25rem;
    font-weight: 800;
    line-height: 1;
}

.flow-section {
    margin-bottom: 2rem;
}

.flow-steps {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    background: white;
    border-radius: 16px;
    padding: 2rem;
    width: 100%;
}

.flow-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 300px;
    margin-top:1.5rem;
}

.flow-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 30px 20px rgba(138, 43, 226, 0.10);
    margin-bottom: 1rem;
}

.flow-icon img {
    width: 40%;
    height: auto;
    object-fit: contain;
}

.flow-title {
    color: var(--primary-color);
    font-size: 1.25rem;
    font-weight: 600;
    margin: 1rem 0;
}

.flow-desc {
    color: #1F1F1F;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.flow-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-shrink: 0;
    margin: 0 0.5rem;
    height: 2px;
    align-self: center;
}

.flow-line {
    max-width: 170px;
    min-width:30px;
    width:8vw;
    height: 2px;
    position: relative;
    background-image: repeating-linear-gradient(
        to right,
        #ced4d5 0px,
        #ced4d5 8px,
        transparent 8px,
        transparent 20px
    );
}

.flow-line::before,
.flow-line::after {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary-color);
    position: absolute;
    transform: translateY(-50%);
    top:1px;
}

.flow-line::before {
    left: -4px;
}

.flow-line::after {
    right: -4px;
}



.stats-card-container{
    padding: 1rem;
}

.stat-card {
    width: 180px;
    min-width: 180px;
}

.metric-card {
    background: var(--card-gradient);
    color: white;
    padding: 1rem;
    border-radius: 0.5rem;
}

.metric-card h6{
    color: #FFFFFF !important;
    font-weight: 500;
    font-size: 1.2rem;
    border-bottom: 1px solid #FFFFFF;
    padding-bottom: 0.5rem;
    margin-bottom: 0.75rem;
    width: 100%;
}

.metric-card .metric-value {
    color: var(--secondary-color) !important;
    font-size: 2.5rem;
    font-weight: bold;
    margin: 0;
    padding-top:1rem;
}

.individual-card {
    background: var(--card-gradient);
    border-radius: 0.5rem;
    padding: 1.5rem 1rem;
    min-height: 180px;
}

.card-chart-title {
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    padding-left: 0.5rem;
}

.card-chart-container {
    height:180px;
    position: relative;
}

.statistics-table-section {
    margin-bottom: 2rem;
    border-radius: 24px;
    overflow: hidden;
    background: #1F1F1F;
    border-top: 1px solid var(--primary-border-color);
    border-bottom: 1px solid var(--primary-border-color);
}

.statistics-table-header {
    background-color: var(--primary-color);
    color: white;
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom:0;
}


.statistics-table-title {
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

.statistics-table-icon {
    font-size: 1.5rem;
    color: white;
    cursor: pointer;
}

.statistics-table-container {
    overflow-x: auto;
    overflow-y: visible;
}

.statistics-table {
    width: max-content;
    min-width: 100%;
    border-collapse: collapse;
    color: white;
    table-layout: fixed;
}

.statistics-table thead {
    background-color: var(--primary-color);
}

.statistics-table th {
    padding: 0.75rem 1rem;
    text-align: left;
    font-weight: 500;
    font-size: 1rem;
    color: white;
    position: relative;
    min-width: 120px;
}

.statistics-table th .resize-handle {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    cursor: col-resize;
    background-color: transparent;
    border-right: 1px solid var(--primary-border-color);
    transition: background-color 0.2s ease;
}

.statistics-table th .resize-handle:hover {
    background-color: var(--primary-border-color);
}

.statistics-table th .resize-handle:active {
    background-color: var(--primary-border-color);
}


.statistics-table tbody tr:nth-child(odd) {
    background-color: #FFFFFF;
}

.statistics-table tbody tr:nth-child(even) {
    background-color: #EFF1F1;
}


.statistics-table td {
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    color: var(--primary-color);
    white-space: nowrap;
    overflow: hidden;
}

.statistics-table .link-name {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.statistics-table .link-name:hover {
    color: #1BB9A9;
    text-decoration: underline;
}

/* ========== PRICING CARDS ========== */
.pr-cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.pr-card {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    position: relative;
    display: flex;
    flex-direction: column;
}

.pr-card:hover{
    background-image: url("../img/pr-bg.svg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.pr-card:hover .pr-card-header, .pr-card:hover .pr-card-price-amount, .pr-card:hover
.pr-card-price-period, .pr-card:hover .pr-card-features .pr-feature-label, .pr-card:hover
.pr-card-features .pr-feature-badge{
    color: white;
}

.pr-card:hover .pr-card-badge-img{
    content: url("../img/c-plan-hover.svg");
}


.pr-card:hover .pr-card-button{
    background-color: white;
}

.pr-card-badge {
    position: absolute;
    top: 1.5rem;
    right: -0.75rem;
    color: white;
    z-index: 1;
}

.pr-card-badge img {
    width:120px;
}

.pr-card-header {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.pr-card-price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    border-bottom: 1px solid var(--primary-border-color);
    padding-bottom: 1rem;
    margin-bottom: 1rem;
}

.pr-card-price-amount {
    font-size: calc(25px + 0.8vw);
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.pr-card-price-period {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--primary-color);
    opacity: 0.7;
}


.pr-card-features {
    flex: 1;
    margin-bottom: 1.5rem;
}

.pr-feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.pr-feature-check, .pr-feature-x {
    flex-shrink: 0;
    background-color: rgba(10, 251, 229, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 25px;
    height: 25px;
    padding: 0.3rem;
}


.pr-feature-x {
    background-color: rgba(221, 46, 68, 0.2) !important;
}

.pr-feature-x img, .pr-feature-check img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.pr-feature-label {
    font-size: 0.9375rem;
    color: var(--primary-color);
    font-weight: 500;
}

.pr-feature-badge {
    background: #10B981;
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 600;
    display: inline-block;
}

.pr-card-form {
    margin-top: auto;
}

.pr-card-button {
    width: 100%;
    padding: 0.75rem 1.5rem;
    background: transparent;
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9375rem;
    cursor: pointer;
}

.pr-card-button:hover:not(:disabled) {
    color: var(--primary-color);
}

.pr-card-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.pr-footer-notes {
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.6;
}

.pr-footer-notes > div {
    margin-bottom: 0.5rem;
}


.column-selector-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.column-selector-modal.active {
    display: flex;
}

.column-selector-content {
    background-color: #2A2A2A;
    border-radius: 8px;
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
}

.column-selector-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.column-selector-header h3 {
    color: white;
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
}

.close-modal {
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 30px;
    height: 30px;
}

.close-modal:hover {
    color: var(--secondary-color);
}

.column-selector-body {
    padding: 1.5rem;
    overflow-y: auto;
    flex: 1;
}

.column-search {
    width: 100%;
    padding: 0.75rem;
    background-color: #1F1F1F;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    color: white;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.column-search::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.column-search:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.column-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.column-item {
    display: flex;
    align-items: center;
    padding: 0.75rem;
    background-color: #1F1F1F;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.column-item:hover {
    background-color: rgba(13, 212, 191, 0.1);
}

.drag-handle {
    color: rgba(255, 255, 255, 0.5);
    margin-right: 0.75rem;
    cursor: grab;
    font-size: 1.2rem;
}

.drag-handle:active {
    cursor: grabbing;
}

.column-item input[type="checkbox"] {
    margin-right: 0.75rem;
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--secondary-color);
}

.column-label {
    color: white;
    font-size: 0.9rem;
    flex: 1;
}

.column-selector-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.restore-default {
    color: var(--secondary-color);
    text-decoration: none;
    font-size: 0.9rem;
}

.restore-default:hover {
    text-decoration: underline;
}

.modal-actions {
    display: flex;
    gap: 0.75rem;
}

.btn-cancel,
.btn-apply {
    padding: 0.5rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.btn-cancel {
    background-color: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-cancel:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.btn-apply {
    background-color: #28a745;
    color: white;
}

.btn-apply:hover {
    background-color: #218838;
}

.campaign-details-title {
    color: white;
    font-size: 2rem;
    font-weight: 600;
}


.form-label {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    display: block;
}

.required-asterisk {
    color: var(--asterisk-color);
}

.form-label-help {
    color: var(--muted-color);
    font-size: 0.875rem;
    margin-left: 0.1rem;
    cursor: help;
}

.form-label-help-text {
    color: var(--muted-color);
    font-size: 0.75rem;
    font-weight: 600;
    opacity: 1;
    transition: all 0.3s ease;
    display:flex;
    align-items: center;
    gap: 0.3rem;
    justify-content: flex-start;
}

.form-label-help-text i {
    align-self: flex-start;
}

.form-label-help + .form-label-help-text {
    opacity: 0;
    margin-left: 0.5rem;
}

.form-label-help:hover + .form-label-help-text {
    opacity: 1;
}

.form-control, .form-select {
    border: 1px solid var(--primary-color) !important;
    border-radius: 8px;
    color: var(--primary-color) !important;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
    background: white;
    font-size: 0.9rem;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}


.form-control::placeholder, .form-select::placeholder {
    color: rgba(0, 0, 0, 0.5);
}

.form-control:focus, .form-select:focus {
    outline: none;
    border-color: var(--primary-color);
    background-color: white;
    box-shadow: 0 0 0 1px var(--primary-color);
}

.form-control.is-invalid,
.form-select.is-invalid,
textarea.form-control.is-invalid {
    border-color: var(--asterisk-color) !important;
    box-shadow: 0 0 0 1px var(--asterisk-color) !important;
}

.form-control.is-invalid:focus,
.form-select.is-invalid:focus,
textarea.form-control.is-invalid:focus {
    border-color: var(--asterisk-color) !important;
    box-shadow: 0 0 0 1px var(--asterisk-color) !important;
}

.form-select option {
    background-color: var(--gray-color) !important;
    color: white !important;
    padding: 0.5rem;
}


input[type="file"].form-control::-webkit-file-upload-button {
    background-color: var(--secondary-color) !important;
    color: #fff !important;
    border-radius: 8px;
}

input[type="file"].form-control::file-selector-button {
    background-color: var(--secondary-color) !important;
    color: #fff !important;
    border-radius: 8px;
}

/* Hover effect for Choose File button only */
input[type="file"].form-control:hover::-webkit-file-upload-button {
    background-color: var(--primary-color) !important;
    color: #fff !important;
}

input[type="file"].form-control:hover::file-selector-button {
    background-color: var(--primary-color) !important;
    color: #fff !important;
}

#background_color.form-control, #theme_color.form-control{
    padding: 0;
}

.date-input-wrapper {
    position: relative;
}

.date-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.5);
    z-index: 10;
    pointer-events: none;
}

.date-input {
    padding-left: 2.5rem;
}

.search-input{
    width:200px !important;
}

.campaign-icon-upload {
    border: 2px dashed var(--primary-color);
    border-radius: 8px;
    padding: 3rem 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}


.campaign-icon-upload.dragover {
    background: rgba(10, 251, 229, 0.15);
    border-color: var(--secondary-color);
    color: var(--primary-color);
}

.campaign-icon-upload.is-invalid {
    border-color: var(--asterisk-color) !important;
    border-style: solid !important;
    box-shadow: 0 0 0 1px var(--asterisk-color) !important;
}

.app-icon-upload-area.is-invalid .app-icon-circle {
    border-color: var(--asterisk-color) !important;
    box-shadow: 0 0 0 2px var(--asterisk-color) !important;
}

/* Push Notification Toggle Switch */
.push-notification-toggle-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1rem;
    background: rgba(0, 153, 180, 0.1);
    border-radius: 8px;
}

.push-notification-toggle {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px;
    margin: 0;
    cursor: pointer;
}

.push-toggle-input {
    opacity: 0;
    width: 0;
    height: 0;
}

.push-toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.3s;
    border-radius: 24px;
}

.push-toggle-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
    border: 1px solid #0099B4;
}

.push-toggle-input:checked + .push-toggle-slider {
    background-color: #0099B4;
}

.push-toggle-input:checked + .push-toggle-slider:before {
    transform: translateX(20px);
}

.push-notification-label {
    margin: 0;
    font-weight: 400;
}

/* Toggle Dropdown Styles */
.toggle-dropdown-wrapper {
    position: relative;
}

.toggle-dropdown-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    cursor: pointer;
    background: white;
    border: 1px solid var(--primary-color);
    border-radius: 8px;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
}

.toggle-dropdown-btn:hover {
    border-color: var(--secondary-color);
}

.toggle-dropdown-btn.is-invalid {
    border-color: var(--asterisk-color) !important;
    box-shadow: 0 0 0 0.25rem rgba(255, 107, 107, 0.25) !important;
}

.toggle-dropdown-arrow {
    color: var(--primary-color);
    font-size: 0.875rem;
    transition: transform 0.3s ease;
}

.toggle-dropdown-btn.active .toggle-dropdown-arrow {
    transform: rotate(180deg);
}

.toggle-dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid var(--primary-color);
    border-radius: 8px;
    margin-top: 0.25rem;
    max-height: 300px;
    overflow-y: auto;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Right-aligned dropdown for icon-only buttons */
.toggle-dropdown-content.dropdown-end {
    left: auto;
    right: 0;
    min-width: 250px;
}

.toggle-dropdown-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #E5E7EB;
    transition: background-color 0.2s ease;
}

.toggle-dropdown-item:last-child {
    border-bottom: none;
}

.toggle-dropdown-item:hover {
    background-color: #F9FAFB;
}

.option-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 16px;
    padding: 0 5px;
    background-color: var(--secondary-color);
    color: white;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
}

.option-name {
    flex: 1;
    color: var(--primary-color);
    font-size: 0.8rem;
}

.option-toggle-switch {
    position: relative;
    display: inline-block;
    width: 22px;
    height: 12px;
    margin: 0;
    cursor: pointer;
}

.option-toggle-input {
    opacity: 0;
    width: 0;
    height: 0;
}

.option-toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.3s;
    border-radius: 12px;
}

.option-toggle-slider:before {
    position: absolute;
    content: "";
    height: 8px;
    width: 8px;
    left: 2px;
    bottom: 2px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
}

.option-toggle-input:checked + .option-toggle-slider {
    background-color: var(--secondary-color);
}

.option-toggle-input:checked + .option-toggle-slider:before {
    transform: translateX(10px);
}

.upload-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.upload-text {
    margin-bottom: 0rem;
}

.upload-link {
    font-weight: 700;
    text-decoration: underline;
    cursor: pointer;
}

.upload-recommendations {
    font-size: 0.725rem;
    color: #FF6B6B;
}

.upload-formats {
    font-size: 0.85rem;
    margin: 0;
}

.campaign-form-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 2rem;
}

.step-buttons {
    display: flex;
    gap: 0.5rem;
    justify-content: flex-end;
    width: 100%;
}

.btn-border {
    background: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    padding: 0.3rem 0;
    width: 80px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-border:hover {
    background: var(--secondary-color);
    color: white;
}


.campaign-btn-submit {
    background: var(--secondary-color);
    border: none;
    color: black;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.campaign-btn-submit:hover {
    background: #08E5D1;
    color: black;
}



.padding-1{
    padding-top:1rem;
    padding-bottom:1rem;
}

#campaignContainer .row{
    border-radius: 12px;
    overflow: hidden;
    width:100%;
    margin:0 auto;
}

#campaignContainer.grid-view-active .campaign-item {
    display: flex;
    flex-direction: column;
    height: 100%;
}

#campaignContainer.grid-view-active .campaign-item .row {
    flex-direction: column;
    flex: 1;
    display: flex;
}

#campaignContainer.grid-view-active .campaign-item.grid-item {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

#campaignContainer.grid-view-active .campaign-item.grid-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}


.input-container{
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: space-between;
    width:80%;
}


.btn-container{
    display:flex;
    gap:0.5rem;
}

.btn-container a, .btn-container button{
    width:30%;
}

.btn-danger{
    border-radius: 10px ;
    border: none;
    color: white;
    padding: 4px 1rem;
}

.btn-danger img{
    filter: brightness(0) saturate(100%) invert(92%) sepia(93%) saturate(0%) hue-rotate(202deg) brightness(106%) contrast(106%);
    pointer-events: none;
    border-radius: 10px;
}

.callout{
    background: var(--gray-color) !important;
}

.icon-thick {
    -webkit-text-stroke: 0.5px;
    text-shadow: 0.3px 0.3px 0 currentColor;
}

.icon-thick svg,
.icon-thick svg path {
    stroke-width: 1.5 !important;
    stroke: currentColor;
}

/* Pagination Styles */
.pagination {
    --bs-pagination-color: var(--primary-color);
    --bs-pagination-bg: transparent;
    margin-bottom:0 !important;
}

.statistics-table-container .pagination{
    margin-bottom:0.5rem !important;

}

.statistics-table-container .d-flex:has(.pagination){
    background-color: var(--bs-body-bg) !important;
}


.d-flex:has(.pagination){
    margin-top:0;
    padding-top:1rem;
    font-weight:600;
}

.pagination .page-link {
    color: var(--primary-color);
    background-color: transparent;
    border-color: var(--primary-color);
}

.pagination .page-link:hover {
    color: var(--primary-color);
    background-color: rgba(10, 251, 229, 0.1);
    border-color: var(--secondary-color);
}

.pagination .page-item.active .page-link {
    color: white;
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.pagination .page-item.disabled .page-link {
    color: rgba(10, 251, 229, 0.4);
    background-color: transparent;
    border-color: rgba(255, 255, 255, 0.1);
    cursor: not-allowed;
}

.pagination .page-link:focus {
    color: var(--secondary-color);
    background-color: rgba(10, 251, 229, 0.1);
    box-shadow: 0 0 0 0.25rem rgba(10, 251, 229, 0.25);
}

.upload-zone, .media-card, .media-thumb{
    background: var(--gray-color) !important;
}

.upload-zone{
    border: 2px dashed var(--secondary-color) !important;
}


.icon-btn:hover{
    background: var(--secondary-color) !important;
}

.icon-btn:hover i{
    color: black !important;
}

.text-primary{
    color: var(--primary-color) !important;
}

.sec-border{
    border: 1px solid var(--secondary-border-color) !important;
}

.alert-warning{
    --bs-alert-color: black !important;
}

code{
    color:var(--secondary-color);
}



.btn-outline-secondary{
    border-color: white;
}

.b0{
    border: none;
}

.view-token-btn{
    border-radius: 5px;
    color:White;
}

.bi-clipboard{
    color:white;
}


a:has(.bi-pencil-square){
    color: var(--secondary-color) !important;
    border-color: var(--secondary-color) !important;
}

a:has(.bi-pencil-square):hover, a:has(.bi-pencil-square):focus, a:has(.bi-pencil-square):active{
    background: var(--secondary-color) !important;
    color:black !important;
}



.bi-pencil-square{
    font-size: 1.25rem;
}

.bi-broadcast{
    font-size: 1.25rem;
}

.bi-cloud-fill{
    color: var(--secondary-color);
}


/* ========== DATE RANGE PICKER ========== */
.date-range-picker-wrapper {
    position: relative;
    width: 100%;
    min-width: 200px;
}

/* Datepicker Popup */
.datepicker-popup {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    background: white;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    padding: 0;
    z-index: 1100;
    display: none;
    min-width: 300px;
}

.datepicker-popup.show {
    display: block;
}

.datepicker-content {
    display: flex;
}

.datepicker-presets {
    display: flex;
    flex-direction: column;
    padding: 0.5rem;
    width: 150px;
    border-right: 1px solid #E5E7EB;
    max-height: 500px;
    overflow-y: auto;
}

.datepicker-presets-divider {
    height: 1px;
    background: #E5E7EB;
    margin: 0.5rem 0;
}

.datepicker-preset-btn {
    background: transparent;
    border: none;
    padding: 0.25rem;
    text-align: center;
    color: #6B7280;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s ease;
    border-radius: 8px;
    margin-bottom: 0.25rem;
}

.datepicker-preset-btn:hover {
    background: #F3F4F6;
    color: var(--primary-color);
}

.datepicker-preset-btn.active {
    background: var(--secondary-color);
    color: var(--primary-color);
}

/* Calendar Styles */
.datepicker-calendar {
    padding: 0.75rem;
    width: 300px;
}

.calendar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.calendar-nav-btn {
    background: transparent;
    border: none;
    color: var(--primary-color);
    font-size: 1rem;
    cursor: pointer;
    padding: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.calendar-nav-btn:hover {
    color: var(--secondary-color);
}

.calendar-month-year {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-weight: 600;
    color: var(--primary-color);
}

.calendar-month,
.calendar-year {
    background: transparent;
    border: none;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.2rem 0.4rem;
    cursor: pointer;
    outline: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23082A2B' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.25rem center;
    padding-right: 1.5rem;
}

.calendar-month:hover,
.calendar-year:hover {
    border-bottom-color: var(--secondary-color);
}

.calendar-month:focus,
.calendar-year:focus {
    border-bottom-color: var(--secondary-color);
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.25rem;
    margin-bottom: 0.25rem;
}

.calendar-weekday {
    text-align: center;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.8rem;
    padding: 0.25rem 0;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap:0.25rem 0;
}

.calendar-day {
    width:30px;
    height:30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    font-size: 0.8rem;
    color: var(--primary-color);
    transition: all 0.2s ease;
    position: relative;
}

.calendar-day:hover {
    background: #F3F4F6;
}

.calendar-day.other-month {
    color: #9CA3AF;
}

.calendar-day.selected,  .calendar-day.in-range {
    background: var(--primary-color);
    color: white;
    font-weight: 700;
}


/* Time Picker */
.calendar-time-picker {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 0.5rem;
    width: 100%;
}

.calendar-time-icon {
    color: #6B7280;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.time-input-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
}

.time-input {
    background: white;
    border: 1px solid #D1D5DB;
    border-radius: 6px;
    padding: 0.2rem 1.5rem 0.2rem 0.75rem;
    font-size: 0.9rem;
    color: var(--primary-color);
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%239CA3AF' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.5rem center;
    flex: 1;
}

.time-input:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.time-separator {
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: 600;
}

.calendar-apply-section {
    display: flex;
    justify-content: flex-end;
    margin-top: 0.5rem;
    padding-top: 0.5rem;
    border-top: 1px solid #E5E7EB;
}

.calendar-apply-btn {
    background: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 0.5rem 1rem;
    font-weight: 600;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.calendar-apply-btn:hover {
    background: #0bb5a3;
    transform: translateY(-1px);
}

.calendar-time-section {
    padding: 0.5rem 0;
}

.calendar-time-section .form-label {
    font-size: 0.85rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.calendar-time-section .d-flex {
    align-items: center;
}

.calendar-time-section .form-control {
    width: 50px;
    text-align: center;
    padding: 0.4rem;
    font-size: 0.85rem;
}

.calendar-time-section span {
    font-size: 1rem;
    color: var(--primary-color);
    font-weight: 600;
    margin: 0 0.25rem;
}

#header-dr-picker{
    width:40% !important;
}

.dr-picker-header{
    flex-wrap:wrap;
}

.date-range-picker {
    width: 100%;
    padding: 0.5rem 3.5rem 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    background: white;
    cursor: pointer;
    border: 1px solid var(--primary-color);
}

.date-range-picker-wrapper.is-invalid .date-range-picker {
    border-color: var(--asterisk-color) !important;
    box-shadow: 0 0 0 0.25rem rgba(255, 107, 107, 0.25) !important;
}

.date-range-picker.is-invalid {
    border-color: var(--asterisk-color) !important;
    box-shadow: 0 0 0 0.25rem rgba(255, 107, 107, 0.25) !important;
}


.date-range-arrow {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: var(--primary-color);
    font-size: 1.1rem;
    pointer-events: none;
}

.date-range-calendar {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
    font-size: 1.1rem;
    pointer-events: none;
}

.default-btn {
    background: var(--secondary-color);
    color: white;
    padding: 0.5rem auto;
    font-weight: 600;
    border-radius: 10px;
    white-space: nowrap;
    border:1px solid white;
    transition: all 0.3s ease;
}

.default-btn-primary {
    background: var(--primary-color);
    color: white;
    padding: 0.5rem auto;
    font-weight: 600;
    border-radius: 10px;
    white-space: nowrap;
    border:1px solid white;
    transition: all 0.3s ease;
}

#header-search-btn{
    padding: 0.5rem 4rem !important;
}

.default-btn:hover {
    color: var(--primary-color);
    background: var(--secondary-color);
}

.default-btn-primary{
    background: var(--primary-color);
    color:white;
}

.btn-outline-primary{
    color:var(--secondary-color) !important;
    border: solid 1px var(--secondary-color) !important;
}

.btn-outline-primary:hover{
    color:#fff !important;
    background: var(--secondary-color) !important;
}


.acc-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(2, 100, 105, 0.2);
    display: flex;
    border-color: var(--primary-color);
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.acc-icon img {
    width:70%;
    height:auto;
    object-fit: contain;
}


/* ========== SECTION CARD ========== */
.section-card {
    background: white;
    border-radius: 24px;
    padding: 1.5rem;
}

#notif-demo-section .section-card{
    height:100%;
}

.see-more-link {
    color: var(--secondary-color);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
}

.see-more-link:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.push-notif-card {
    background: white;
    border-radius: 20px;
    transition: transform 0.2s ease;
    border: 1px solid var(--primary-color);
    margin-bottom: 1rem;
}

.push-notif-card:last-child {
    margin-bottom: 0;
}


.push-notif-card-inner {
    display: flex;
    align-items: center;
}

.push-notif-logo {
    align-self: stretch;
    flex-shrink: 0;
    background-color: var(--pwa-bg-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-top-left-radius: 19px;
    border-bottom-left-radius: 19px;
    overflow: hidden;
    padding:0.5rem;
    max-width:80px;
    min-width:60px;
    flex-basis:8%;
}



.push-notif-logo img {
    object-fit: contain;
    border-radius:10px;
    width:100%;
    height: auto;
}

.push-notif-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex: 1;
    padding: 1.5rem 1rem;
    flex-wrap: wrap;
}

.push-notif-content {
    min-width: 0;
}

#push-broadcast-section .push-notif-content, #pwa-apps-section .push-notif-content{
    flex-basis:20%;
}

#pwa-apps-overview .push-notif-content{
    flex-basis:25%;
}

.push-notif-title {
    color: var(--primary-color);
    font-size: 1.089rem;
    font-weight: 700;
    margin: 0;
}

.push-notif-subtitle {
    color: #6B7280;
    font-size: 0.963rem;
    margin:0;
}

.push-notif-date {
    color: #9CA3AF;
    font-size: 0.88rem;
    margin: 0;
}

.push-notif-stat-item {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width:5%;
}

#pwa-apps-section .push-notif-stat-item{
    width:auto;
}


.push-notif-stat-value {
    color: var(--primary-color);
    font-size: 1.3rem;
    font-weight: 500;
}

.push-notif-stat-value-small {
    font-size: 0.875rem;
    line-height:1.2;
}

.pixel-id{
    font-size:0.75rem;
}


.push-notif-stat-label {
    color: #6B7280;
    font-size: 0.9rem;
    line-height:1;
    text-align: center;
    display: block;
    width: 100%;
}

.push-notif-menu {
    flex-shrink: 0;
    display: flex;
    gap: 1rem;
    align-items: center;
}

.push-notif-menu button,
.push-notif-menu a {
    color: var(--primary-color);
    font-size: 1.5rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.push-notif-menu button:hover,
.push-notif-menu a:hover {
    color: var(--secondary-color);
}

.push-notif-icon {
    width: 1.5rem;
    height: 1.5rem;
    object-fit: contain;
    transition: filter 0.2s ease;
}

.push-notif-menu a:hover .push-notif-icon {
    filter: brightness(0);
}

.demo-chart-container {
    position: relative;
    max-width: 380px;
    height:380px;
    margin: 0 auto 2rem;
    display:flex;
    align-items: center;
    justify-content: center;
}

.demo-chart-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.demo-chart-label {
    color: #6B7280;
    font-size: 1.361rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
}

.demo-chart-label i {
    font-size: 1.555rem;
}

.demo-chart-value {
    color: var(--secondary-color);
    font-size: 3.888rem;
    font-weight: 700;
    line-height: 1;
}

.demo-chart-country {
    color: var(--primary-color);
    font-size: 1.944rem;
    font-weight: 600;
    margin-top: 0.25rem;
}

.demo-country-list {
    max-height: 370px;
    overflow-y: auto;
}

.demo-country-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
}

.demo-country-item:nth-child(odd) {
    background-color: #F9FAFB;
}

.demo-country-item:nth-child(even) {
    background-color: white;
}

.demo-country-color {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    flex-shrink: 0;
}

.demo-country-name {
    flex: 1;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.4rem;
}

.demo-country-value {
    color: #6B7280;
    font-weight: 600;
    font-size: 1.4rem;
}


/* Filter Bar Styles */
.filter-bar {
    display: flex;
    align-items: center;
    padding: 0.75rem 0;
    gap: 1rem;
}

.filter-bar-left {
    display: flex;
    align-items: center;
    gap:0.5rem;
}

.filter-bar-left a{
    text-decoration: none;
}

.filter-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    background: transparent;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    color:#849595;
    cursor: pointer;
    transition: all 0.2s ease;
}

.filter-pill:hover {
    color: var(--primary-color);
}

.filter-pill.active {
    color: var(--primary-color);
}

.filter-count {
    align-items: center;
    justify-content: center;
    width:2rem;
    background: #849595;
    border-radius: 0.625rem;
    font-size: 0.8rem;
    color: white;
    line-height:1.2;
    text-align:center;
}

.filter-pill.active .filter-count {
    background: var(--primary-color);
    color: white;
}

.filter-icon-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    background: transparent;
    border: 3px solid #849595;
    border-radius: 50%;
    color: #849595;
    cursor: pointer;
    transition: all 0.2s ease;
}

.filter-icon-btn:hover {
    background: #E5E7EB;
    border-color: #9CA3AF;
    color: #374151;
}

.filter-icon {
    width: 1rem;
    height: 1rem;
    object-fit: contain;
}

/* Step Navigation Tabs */
.step-tabs {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    width: 100%;
    border-radius:10px;
    padding:2px;
}

.step-tab {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    flex: 1;
    justify-content: center;
}

.step-tab.active {
    background: var(--primary-color);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.step-number {
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.875rem;
    background: var(--primary-color);
    color: white;
    flex-shrink: 0;
}

.step-tab.active .step-number {
    background: white;
    color: var(--primary-color);
}

.step-label {
    font-weight: 500;
    font-size: 0.875rem;
    color: var(--primary-color);
}

.step-tab.active .step-label {
    color: white;
}

/* Input with Character Counter */
.input-with-counter {
    position: relative;
}

.input-with-counter .form-control {
    padding-right: 8rem;
}

.char-counter {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.75rem;
    color: #FF6B6B;
    pointer-events: none;
    white-space: nowrap;
}

.input-with-counter .form-control.is-invalid ~ .char-counter {
    right: 2.5rem;
}

/* Tab Option Cards */
.tab-option-card {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    border: 1px solid var(--primary-color);
    border-radius: 0.5rem;
    margin-bottom: 0.75rem;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
}

.tab-option-card:has(#customAudienceFilters) {
    flex-direction: column;
}

.tab-option-card:has(#customAudienceFilters) > .d-flex {
    width: 100%;
}

.tab-option-card:has(#scheduleCustomFilters) {
    flex-direction: column;
}

.tab-option-card:has(#scheduleCustomFilters) > .d-flex {
    width: 100%;
}

.tab-option-card:last-child {
    margin-bottom: 0;
}

.tab-option-card:hover {
    background: #F3F4F6;
}

.tab-option-card .form-check-input {
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.tab-option-card.no-border {
    border: none;
    padding: 0 1rem;
    margin-bottom: 0.75rem !important;
    align-items: center;
}

.tab-option-content {
    flex: 1;
}

.tab-option-label {
    display: block;
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
    cursor: pointer;
}

.tab-option-help {
    font-size: 0.75rem;
    color: #6B7280;
    margin: 0;
    line-height: 1.4;
}

.tab-option-dropdown-icon {
    color: var(--primary-color);
    font-size: 0.875rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

/* Form Separator */
.form-separator {
    width: 100%;
    height: 2px;
    border-top: 2px dashed #ced4d5;
    margin-top: 2rem;

}

/* Notification Preview Card */
.notification-preview-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-top: 1rem;
}

.notification-preview-body {
    padding: 1rem;
}

.notification-preview-icon {
    flex-shrink: 0;
}

.notification-preview-footer {
    padding: 0.75rem 1rem;
    border-top: 1px solid #E5E7EB;
    background: #F9FAFB;
}

.notification-preview-footer .btn {
    border: 1px solid #E5E7EB;
    color: var(--primary-color);
    font-weight: 500;
}



/* Drawer Styles */
.drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1071;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.drawer-overlay.active {
    opacity: 1;
    visibility: visible;
}

.drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 90%;
    max-width: 500px;
    height: 100%;
    background: white;
    z-index: 1072;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    box-shadow: -4px 0 16px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.drawer.drawer-open {
    transform: translateX(0);
}

.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-bottom: 1px solid var(--primary-border-color);
}

.drawer-title {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
}

.drawer-close-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--muted-color);
    cursor: pointer;
    padding: 0;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease;
}

.drawer-close-btn:hover {
    color: var(--primary-color);
}

.drawer-body {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
}

.drawer-content {
    color: var(--bs-body-color);
}

.drawer-content .notification-preview-card{
    margin-top: 0;
    margin-bottom: 2rem;
}

.pwa-drawer-icon{
    width: 80px;
    height: 80px;
    border-radius: 16px;
    object-fit: cover;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Drawer Sections */
.drawer-section {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--primary-border-color);
}

.drawer-section-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Info Section */
.drawer-info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.drawer-info-item:last-child {
    margin-bottom: 0;
}

.drawer-info-label {
    font-weight: 500;
    color: var(--bs-body-color);
}

.drawer-status-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: #D1FAE5;
    color: #065F46;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
}

.drawer-url-link {
    color: #2563EB;
    text-decoration: underline;
    word-break: break-all;
    max-width: 60%;
    text-align: right;
}

/* Stats Section */
.drawer-stats-content {
    flex: 1;
}

.drawer-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.drawer-stat-item {
    text-align: center;
}

.drawer-stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.drawer-stat-label {
    font-size: 0.875rem;
    color: var(--muted-color);
}


.tooltip-inner {
    font-size: 14px;
    font-weight: 600;
}


/* Reusable Components */
.custom-multiselect .option-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 8px;
    cursor: pointer;
    border-radius: 4px;
}

.custom-multiselect .option-item:hover {
    background: #f5f5f5;
}

.selected-pill {
    background: var(--secondary-color);
    color: #fff;
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.selected-pill .remove-pill {
    cursor: pointer;
    font-weight: bold;
    color: #fff;
}

.suggested-tag-btn {
    background: transparent;
    border: 1px solid var(--muted-color);
    color: var(--muted-color);
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 0.85rem;
    transition: all 0.2s;
}

.suggested-tag-btn:hover {
    background: var(--muted-color);
    color: #fff;
    border-color: var(--muted-color);
}

.overall-rating-number {
    font-size: 4rem;
    font-weight: 700;
}

.rating-star-label {
    min-width: 20px;
}

.app-icon-placeholder-icon {
    font-size: 2rem;
    color: #ccc;
}

.app-icon-preview {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.upload-icon-large {
    font-size: 3rem;
    color: #ccc;
}

.upload-preview-image {
    max-height: 200px;
    max-width: 100%;
}

.reviews-section-bg {
    background: rgba(0, 153, 180, 0.1);
}

.btn-close-no-padding {
    padding: 0;
}

.avatar-preview-hidden {
    display: none;
}

.avatar-preview-image {
    max-width: 50px;
    max-height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.input-icon-right {
    right: 10px;
    left: auto;
}

.input-with-icon {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--muted-color);
    font-size: 1rem;
    pointer-events: none;
    z-index: 1;
}

.input-with-icon .input-icon-right {
    left: auto;
    right: 0.75rem;
}

.input-with-icon .form-control {
    padding-left: 2.5rem;
}

.input-with-icon .input-icon-right ~ .form-control,
.input-with-icon .input-icon-right ~ select.form-control {
    padding-left: 1rem;
    padding-right: 2.5rem;
}

.input-with-icon select.form-control {
    padding-right: 2.5rem;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.rating-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 8px;
    border-radius: 10px;
    outline: none;
    background: linear-gradient(to right, #0099B4 0%, #0099B4 var(--slider-value, 0%), #e9ecef var(--slider-value, 0%), #e9ecef 100%);
}

.action-icon {
    width: 20px;
    height: 20px;
    cursor: pointer;
    display: block;
    transition: transform 0.2s ease;
}

.action-btn {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.action-btn:hover .action-icon {
    transform: scale(1.2);
}

.action-buttons-group {
    gap: 0;
}

.action-divider {
    width: 1px;
    height: 20px;
    background-color: #dee2e6;
    margin: 0 4px;
}

.copy-icon {
    width: 16px;
    height: 16px;
    cursor: pointer;
    display: block;
}

.rating-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    background: #fff;
    border: 3px solid #0099B4;
    border-radius: 50%;
    cursor: pointer;
    margin-top: -6px;
}

.rating-slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    background: #fff;
    border: 3px solid #0099B4;
    border-radius: 50%;
    cursor: pointer;
}

.rating-slider::-webkit-slider-runnable-track {
    height: 8px;
    border-radius: 10px;
}

.rating-slider::-moz-range-track {
    height: 8px;
    border-radius: 10px;
    background: #e9ecef;
}

.rating-slider::-moz-range-progress {
    height: 8px;
    background: #0099B4;
    border-radius: 10px;
}

.color-picker-wrapper {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.color-picker-input {
    width: 50px;
    height: 38px;
    border: 1px solid var(--primary-color);
    border-radius: 4px;
    cursor: pointer;
    padding: 2px;
}

.color-hex-input {
    flex: 1;
}

.ddown-label{
    gap:0.75rem;
}

.ddown-option{
    background: rgba(0, 153, 180, 0.1);
    border-radius: 10px;
    padding:0 0.5rem;
    margin:0 !important
}

.account-form-container {
    max-width: 850px !important;
}

.p-brdr-card {
    border: 1px solid var(--primary-color);
    border-radius: 8px;
    background-color:white;
}

.twofa-status-badge {
    background-color: #BEEFBB;
    padding: 0.3rem 0.5rem;
    color: var(--primary-color);
}

.cursor-pointer {
    cursor: pointer;
}

.checkbox-container {
    display: flex !important;
    align-items: center !important;
    gap: 0.5rem;
    min-height: 2.5rem;
}

.checkbox-container .form-check-input {
    margin: 0 !important;
    padding: 0 !important;
    width: 1.25rem !important;
    height: 1.25rem !important;
    border-width: 2px !important;
    border-radius: 4px !important;
    flex-shrink: 0 !important;
}

.checkbox-container .form-check-label {
    margin: 0 !important;
    flex-grow: 1;
    line-height: 1.5;
    cursor: pointer;
}

.twofa-check-icon {
    width: 16px;
    height: 16px;
}



@media (min-width: 1400px)  {
    .container{
        max-width:85%;
    }
}


@media (min-width: 1113px) and (max-width: 1587px) {

    .push-notif-title {
        font-size: 0.8415rem;
    }

    .push-notif-subtitle {
        font-size: 0.674rem;
    }

    .push-notif-date {
        font-size: 0.616rem;
    }

    .push-notif-stat-value {
        font-size: 1rem;
    }

    .push-notif-stat-value-small {
        font-size: 0.75rem;
    }

    .push-notif-stat-label {
        font-size: 0.63rem;
    }

    .demo-chart-container{
        width: 320px;
        height:320px;
    }

    .demo-country-list{
        max-height: 300px;
    }

    .demo-chart-label {
        font-size: 0.953rem;
    }

    .demo-chart-label i {
        font-size: 1.089rem;
    }

    .demo-chart-value {
        font-size: 2.722rem;
    }

    .demo-chart-country {
        font-size: 1.361rem;
    }

    .demo-country-name {
        font-size: 0.98rem;
    }

    .demo-country-value {
        font-size: 0.98rem;
    }
}

@media (min-width: 768px) and (max-width: 1175px) {

    .push-notif-main{
        padding:1rem;
        gap:0;
    }
    .push-notif-title {
        font-size: 0.7578rem;
    }

    .push-notif-subtitle {
        font-size: 0.607rem;
    }

    .push-notif-date {
        font-size: 0.554rem;
    }

    .push-notif-stat-value {
        font-size: 0.9rem;
    }

    .push-notif-stat-value-small {
        font-size: 0.7rem;
    }

    .push-notif-stat-label {
        font-size: 0.567rem;
    }

    .demo-chart-container{
        width: 250px;
        height:250px;
    }

    .demo-country-list{
        max-height: 230px;
    }

    .demo-chart-label {
        font-size: 0.858rem;
    }

    .demo-chart-label i {
        font-size: 0.98rem;
    }

    .demo-chart-value {
        font-size: 2.45rem;
    }

    .demo-chart-country {
        font-size: 1.225rem;
    }

    .demo-country-name {
        font-size: 0.882rem;
    }

    .demo-country-value {
        font-size: 0.882rem;
    }
}


@media (max-width:1500px) and (min-width:990px) {
    .login-container .col-md-4 {
        width: 50%;
    }

    #campaignContainer .row .col-md-1{
        width: 15%;
    }

    #campaignContainer .row .col-md-10{
        width: 70%;
    }
}



@media (max-width:1400px) and (min-width:990px) {
    .register-container .col-md-8 {
        width: 80%;
    }


    .acc-label{
        font-size:0.85rem;
    }

    .acc-icon{
        width:50px;
        height:50px;
    }

    .acc-value{
        font-size:1.5rem;
    }

    .acc-btn{
        padding: 0.5rem 1rem;
    }

    .pricing{
        display:none !important;
    }
}

@media (max-width:990px) and (min-width:768px) {
    .login-container .col-md-4 {
        width: 70%;
    }

    .register-container .col-md-8 {
        width: 95%;
    }

    #campaignContainer .row .col-md-1{
        width: 20%;
    }

    #campaignContainer .row .col-md-10{
        width: 60%;
    }

    .input-container{
        width:100%;
    }

    .btn-container a, .btn-container button{
        width:50%;
    }

    .acc-cards, #campaign-acc-cards{
        grid-template-columns: 1fr;
    }

    .acc-card-featured {
        grid-column: span 1;
    }

    .grw-cards {
        grid-template-columns: 1fr;
    }

    .tp-cards {
        grid-template-columns: 1fr;
    }

    .flow-line{
        width:6vw;
    }

}

@media (max-width:768px) {
    .search-input{
        width:50% !important;
    }

    .input-container{
        width:100%;
    }

    .input-container{
        flex-direction: column;
    }

    .btn-container a, .btn-container button{
        width:50%;
    }

    .acc-cards, #campaign-acc-cards{
        grid-template-columns: 1fr;
    }

    .acc-card-featured {
        grid-column: span 1;
    }

    .grw-cards {
        grid-template-columns: 1fr;
    }

    .tp-cards {
        grid-template-columns: 1fr;
    }

    .flow-steps {
        flex-direction: column;
        gap: 2rem;
        align-items: center;
    }

    .flow-step{
        margin-top:0;
    }

    .flow-connector {
        transform: rotate(90deg);
        margin: 0.5rem 0;
    }


    .push-notif-main{
        padding:1rem;
        gap:0 0.2rem;
    }
    .push-notif-title {
        font-size: 0.8712rem;
    }

    .push-notif-subtitle {
        font-size: 0.698rem;
    }

    .push-notif-date {
        font-size: 0.637rem;
    }

    .push-notif-stat-value {
        font-size: 1.035rem;
    }

    .push-notif-stat-value-small {
        font-size: 0.8rem;
    }

    .push-notif-stat-label {
        font-size: 0.652rem;
    }


    #pwa-apps-section .push-notif-content, #pwa-apps-overview .push-notif-content{
        width:100%;
        display:grid;
        grid-template-columns: 2fr 1fr;
        margin-bottom:0.3rem;
    }


    #pwa-apps-section .push-notif-content, #pwa-apps-overview .push-notif-content{
        flex-basis:100%;
    }

    #pwa-apps-section .push-notif-date, #pwa-apps-overview .push-notif-date{
        order:2;
        color:var(--secondary-color);
        text-align:right;
    }

    #pwa-apps-section .push-notif-subtitle, #pwa-apps-overview .push-notif-subtitle{
        order:3;
    }

    .push-notif-icon{
        width: 1.2rem;
        height: 1.2rem;
    }

    .demo-chart-container{
        width: 280px;
        height:280px;
    }

    .demo-country-list{
        max-height: 230px;
    }

    .demo-chart-label {
        font-size: 0.987rem;
    }

    .demo-chart-label i {
        font-size: 1.127rem;
    }

    .demo-chart-value {
        font-size: 2.818rem;
    }

    .demo-chart-country {
        font-size: 1.409rem;
    }

    .demo-country-name {
        font-size: 1.014rem;
    }

    .demo-country-value {
        font-size: 1.014rem;
    }

    .pr-card-price-amount {
        font-size: calc(30px + 2vw);

    }

    .acc-btn{
        padding: 0.5rem 1rem;
        font-size:1rem;
    }

    .acc-value{
        font-size: 2rem;
    }

}



@media (max-width:500px){

    .section-card{
        padding:1rem;
    }

    .sec-title{
        font-size:1.25rem;
    }

    .grw-icon{
        clip-path: ellipse(100% 70% at 100% 50%);
    }

    .acc-btn{
        padding: 0.5rem 1rem;
        font-size:0.825rem;
    }

    .acc-value{
        font-size:1.5rem;
    }

    .install-btn {
        padding: 0.875rem 1.5rem;
        font-size: 1.25rem;
        max-width: 100%;
    }

    .install-btn i,
    .install-btn svg,
    .install-btn img {
        font-size: 1.5rem;
        width: 24px;
        height: 24px;
    }

    .push-notif-stat-item{
        width:auto;
    }

    .push-notif-main{
        padding:0.5rem;
    }

    .push-notif-content{
        width:100%;
        display:grid;
        grid-template-columns: 2fr 1fr;
        margin-bottom:0.3rem;
    }

    .notification-preview-card .push-notif-content{
        grid-template-columns: 1fr;
    }

    .push-notif-subtitle{
        order:3;
    }

    .push-notif-date{
        order:2;
        color:var(--secondary-color);
        text-align:right;
    }

    .push-notif-stat-value{
        font-size:1rem;
    }

    .push-notif-stat-value-small {
        font-size: 0.75rem;
    }

    #push-broadcast-section .push-notif-content, #pwa-apps-section .push-notif-content{
        flex-basis:100%;
    }

    .pixel-id{
        display:none;
    }

    .tp-item, .tp-value{
        font-size:0.825rem;

    }

}



@media (max-width:400px){

    .acc-card-featured, .grw-icon{
        background-position: left;
    }
    .acc-card-featured .acc-card-body{
        flex-direction: column;
        align-items: flex-start;

    }

     .demo-chart-container{
        width: 250px;
        height:250px;
    }
}

/* Custom Tooltip Styles */
[data-tooltip],
[data-bs-toggle="tooltip"] {
    position: relative;
    cursor: pointer;
}

.tooltip-custom {
    position: fixed;
    z-index: 1070;
    padding: 6px 12px;
    background-color: #1f1f1f;
    color: #fff;
    font-size: 14px;
    font-weight:600;
    border-radius: 4px;
    white-space: nowrap;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transition: visibility 0.2s;
}


.tooltip-custom.show {
    opacity: 1;
    visibility: visible;
}

/* Tooltip arrow */
.tooltip-custom::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: #1f1f1f;
}

/* Disabled 2FA toggle styling */
.push-notification-toggle .push-toggle-input:disabled ~ .push-toggle-slider {
    opacity: 0.5;
    cursor: not-allowed;
    background-color: #ccc;
}

.push-notification-toggle .push-toggle-input:disabled:checked ~ .push-toggle-slider {
    background-color: #93c5fd;
}

.push-notification-toggle .push-toggle-input:disabled ~ .push-toggle-slider:hover {
    background-color: #ccc;
}

.push-notification-toggle .push-toggle-input:disabled:checked ~ .push-toggle-slider:hover {
    background-color: #93c5fd;
}

.push-notification-toggle:has(.push-toggle-input:disabled) {
    cursor: not-allowed;
}

/* Primary card code font size */
.primary-card code {
    font-size: 0.85rem;
}

/* Pricing cards container */
.pr-cards-container {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem;
    max-width: 100%;
}

.pr-card {
    grid-column: span 2;
}

/* Center the last 2 cards when there are exactly 5 cards */
.pr-cards-container > :nth-child(4):nth-last-child(2) {
    grid-column: 2 / span 2;
}

.pr-cards-container > :nth-child(5):last-child {
    grid-column: 4 / span 2;
}

