﻿/* ===================================================
   GLOBAL FONT STACK
   =================================================== */

* {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
}

html {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    height: 100%;
    background-color: black;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow-x: hidden;
}

main {
    width: 100%;
    display: flex;
    justify-content: center;
    flex: 1;
    background-color: #261353;
    padding: 0;
}

article.fans-body-content {
    width: 100%;
    max-width: 100%;
    padding: 0;
    background-color: #261353 !important;
    display: flex;
    flex-direction: column;
}

.page-container {
    width: 100%;
    max-width: none;
    margin: 0 auto;
    padding: 5px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.page-content-wrapper {
    width: 100%;
    max-width: 768px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    box-sizing: border-box;
}

/* Mobile first - full width under 700px */
@media (max-width: 699px) {
    .page-content-wrapper {
        max-width: 100%;
        padding: 0 10px;
    }
}

/* Tablet and up - constrain to 768px */
@media (min-width: 700px) {
    .page-content-wrapper {
        max-width: 768px;
    }
}

/* ===================================================
   TITLE STYLE
   =================================================== */

.title-button {
    position: relative;
    background: linear-gradient(180deg, #2d2d7a 0%, #1a1a5e 50%, #0d0d3a 100%);
    padding: 25px 60px;
    border-radius: 12px;
    border: 4px solid #FFD700;
    box-shadow: 0 8px 20px rgba(0,0,0,0.6), inset 0 2px 4px rgba(255,255,255,0.1);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 20px;
}

    .title-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 30px rgba(0,0,0,0.8), inset 0 2px 4px rgba(255,255,255,0.2);
    }

    .title-button:active {
        transform: translateY(0);
        box-shadow: 0 4px 10px rgba(0,0,0,0.6), inset 0 2px 4px rgba(255,255,255,0.1);
    }

/* Money icon */
.title-icon {
    font-size: 48px;
    color: #FFD700;
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.5));
}

/* 3D Text Effect */
.title-text {
    color: #FFD700;
    font-size: xx-large;
    font-weight: 900;
    letter-spacing: 2px;
    margin: 0;
    text-transform: uppercase;
    /* Multiple layered shadows for 3D depth */
    text-shadow:
    /* Depth layers (darker gold) */
    1px 1px 0 #E6C200, 2px 2px 0 #CC9900, 3px 3px 0 #B38600, 4px 4px 0 #997300, 5px 5px 0 #806000,
    /* Shadow for depth */
    6px 6px 0 #664D00, 7px 7px 0 #4D3A00,
    /* Soft ambient shadow */
    8px 8px 15px rgba(0,0,0,0.7), 10px 10px 20px rgba(0,0,0,0.5);
    /* Subtle gradient for extra pop */
    background: linear-gradient(180deg, #FFE55C 0%, #FFD700 50%, #CCAA00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    /* Fallback for browsers that don't support background-clip */
    color: #FFD700;
}

/* Decorative lines above and below */
.title-button::before,
.title-button::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, #FFD700 20%, #FFD700 80%, transparent 100%);
}

.title-button::before {
    top: -10px;
}

.title-button::after {
    bottom: -10px;
}



/* ===================================================
   FORM STYLES
   =================================================== */

.form-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

    .form-group label {
        color: white;
        font-size: small;
        font-weight: 500;
        text-align: left;
    }

    .form-group input[type="text"],
        input[type="tel"],
        input[type="search"],
        input[type="password"],
        input[type="number"],
        input[type="date"],
        input[type="time"],
        input[type="datetime-local"],
        input[type="url"],
        input[type="file"],
        input[type="email"] {
            width: 100%;
            box-sizing: border-box;
            background-color: #1e1e1e;
            border: solid 0.25px silver;
            border-radius: 20px;
            padding: 10px 15px;
            color: white;
            font-weight: 100;
            height: auto;
            min-height: 40px;
            font-size: 14px;
        }

    .form-group input[type="radio"] {
        transform: scale(1.5);
        appearance: none;
        -webkit-appearance: none;
        width: 20px;
        height: 20px;
        border: 2px solid #a99cff; /* purple border */
        border-radius: 50%;
        background-color: transparent;
        cursor: pointer;
    }

    /* Empty when selected (reverse) */
    input[type="radio"]:checked {
        background-color: red;
    }

    .form-group input[type="checkbox"],
    .form-group select {
        width: 100%;
        box-sizing: border-box;
        background-color: #1e1e1e;
        border: solid 0.25px silver;
        border-radius: 20px;
        padding: 10px 15px;
        color: white;
        font-weight: 100;
        height: auto;
        min-height: 40px;
        font-size: 14px;
    }

        .form-group input:focus,
        .form-group select:focus {
            outline: none;
            border-color: gold;
            box-shadow: 0 0 8px rgba(255, 215, 0, 0.3);
        }

.fans-form-errormessage {
    text-align: left;
    font-weight: 400;
    background-color: darkred;
    color: yellow;
    border: solid 1px red;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: small;
    margin-top: 5px;
}

.fans-form-alertmessage {
    text-align: left;
    font-weight: 400;
    background-color: gold;
    color: darkred;
    border: solid 2px darkred;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: small;
    margin-top: 5px;
}

.fans-form-successmessage {
    text-align: left;
    font-weight: 400;
    color: gold;
    font-size: small;
    margin-top: 5px;
    padding: 5px;
}

.fans-form-button-wide {
    width: 100%;
    background: linear-gradient(to right, transparent 0%, #1a1aff 100%);
    color: white;
    border: solid 1px transparent;
    padding: 12px 20px;
    font-size: large;
    font-weight: 500;
    text-align: right;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    text-decoration: none;
    border-radius: 50px
}

    .fans-form-button-wide:hover {
        background-color: #1a1aff;
        color: white;
        border: solid 1px white;
    }

.fans-form-button-xsmall {
    background-color: blue;
    color: yellow;
    border: solid 2px yellow;
    border-radius: 20px;
    padding: 6px 12px;
    font-size: small;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

    .fans-form-button-xsmall:hover {
        background-color: #4a7ab8;
        color: white;
        border-color: gold;
    }

.fans-form-button-xxsmall {
    background-color: blue;
    color: yellow;
    border: solid .25px yellow;
    border-radius: 20px;
    padding: 3px 6px;
    font-size: x-small;
    font-weight: 100;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

    .fans-form-button-xxsmall:hover {
        background-color: #4a7ab8;
        color: white;
        border-color: gold;
    }

.fans-checkbox-element {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.fans-checkbox-element-large {
    width: 18px;
    height: 18px;
    cursor: pointer;
    transform: scale(1.75);
    margin-right:10px;
}

.fans-read-only-element {
    background-color: #2a2a2a;
    color: #888;
    cursor: not-allowed;
}

/* ===================================================
   SETTINGS PAGE GRID LAYOUT
   =================================================== */

.settings-page-container {
    width: 100%;
    max-width: none;
    margin: 0 auto;
    padding: 5px;
    box-sizing: border-box;
}

.settings-section-header {
    margin: 30px 0 20px 0;
    padding: 0 10px;
}

.settings-section-title {
    font-size: xx-large;
    font-weight: 500;
    color: white;
    text-align: left;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.settings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 20px;
    padding: 0 10px;
    margin-bottom: 20px;
}

@media (min-width: 1024px) {
    .settings-grid {
        grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    }
}

@media (min-width: 1440px) {
    .settings-grid {
        grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
    }
}

@media (min-width: 1920px) {
    .settings-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}


/* ===================================================
   SETTINGS TILES FLEX LAYOUT
   =================================================== */

.settings-tiles-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 0 10px;
    margin-bottom: 20px;
}

/* Mobile - single column stack */
@media (max-width: 699px) {
    .settings-tiles-flex {
        flex-direction: column;
    }

        .settings-tiles-flex .home-radical-simplicity-settings {
            flex: 1 1 100%;
            min-width: 100%;
        }
}

/* Tablet and up - flex tile layout */
@media (min-width: 700px) {
    .settings-tiles-flex {
        flex-direction: row;
    }

        .settings-tiles-flex .home-radical-simplicity-settings {
            flex: 1 1 350px;
            min-width: 100%;
        }
}

/* ===================================================
   SETTINGS CARD STYLES
   =================================================== */

.settings-card {
    background: radial-gradient(circle, #1e3c72 50%, #2a5298 75%, black 100%);
    border: solid 2px #a99cff;
    border-radius: 20px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    height: fit-content;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

    .settings-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 16px rgba(161, 156, 255, 0.3);
    }

.settings-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
}

.settings-card-title {
    font-size: medium;
    font-weight: 700;
    color: gold;
    letter-spacing: 2px;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
}

.settings-card-body {
    flex: 1;
}

.settings-form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

@media (min-width: 768px) {
    .settings-form-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .settings-form-grid {
        grid-template-columns: 1fr;
    }
}
/* ===================================================
           HOME PAGE SPECIFIC STYLES
           =================================================== */

.home-radical-simplicity {
    margin: 20px 0;
    padding: 20px;
    width: 100%;
    background: radial-gradient(circle, #1e3c72 50%, #2a5298 75%, black 100%);
    text-align: center;
    border-radius: 20px;
    border: solid 2px #a99cff;
    box-sizing: border-box;
}

.home-radical-simplicity-settings {
    margin: 20px 0;
    padding: 10px;
    /*width: 100%;*/
    background: radial-gradient(circle, #1e3c72 50%, #2a5298 75%, black 100%);
    border-radius: 20px;
    border: solid 2px #a99cff;
    box-sizing: border-box;
}

.home-intro-header {
    font-size: xx-large;
    font-weight: 100;
    display: block;
    text-align: center;
    color: white;
    margin: 0;
    line-height: 1.3;
}

.home-intro-description {
    font-size: small;
    font-weight: 100;
    display: block;
    margin-top: 15px;
    margin-bottom: 0;
    text-align: center;
    color: white;
    line-height: 1.6;
}

.home-radical-simplicity-header {
    display: block;
    font-size: xx-large;
    font-weight: 100;
    text-align: center;
    margin: 0 0 15px 0;
    color: white;
}

.home-radical-simplicity-whyreasons {
    display: block;
    font-size: small;
    font-weight: 100;
    text-align: left;
    color: white;
    padding: 0;
}

    .home-radical-simplicity-whyreasons ul {
        padding-left: 20px;
        margin: 0;
        list-style-position: outside;
    }

    .home-radical-simplicity-whyreasons li {
        margin-bottom: 15px;
        line-height: 1.7;
    }

.home-radical-simplicity-whyreasons-title {
    font-size: medium;
    font-weight: 600;
    color: gold;
    display: inline;
    margin-right: 5px;
}

.home-nocodingrequired {
    font-weight: 700;
    font-style: italic;
    font-size: xx-large;
    color: gold;
    letter-spacing: 2px;
    padding: 20px 0;
    text-align: center;
    margin: 15px 0;
}

.fans-button-demos {
    font-weight: 100;
    font-size: large;
    border: solid 1px gold;
    border-radius: 20px;
    color: white;
    padding: 20px 10px;
    background: linear-gradient(blue, #2a5298);
    display: flex !important;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: all 0.3s ease;
    text-decoration: none !important;
    cursor: pointer;
    min-height: 60px;
    font-family: inherit;
}

    .fans-button-demos:hover {
        background: linear-gradient(lightblue, #4a7ab8);
        color: yellow;
        border: solid 1px black;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    }

    .fans-button-demos span {
        display: block;
        line-height: 1.4;
    }

.demo-buttons-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin-top: 20px;
    padding: 0;
    width: 100%;
    box-sizing: border-box;
}

@media (min-width: 500px) {
    .demo-buttons-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 700px) {
    .demo-buttons-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
/* ===================================================
   PRICES PAGE - ALL GRIDS
   =================================================== */
/* Core Features Grid */
.prices-features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2px;
    width: 100%;
}

.prices-feature-item {
    color: white;
    font-size: medium;
    padding: 4px 0 4px 50px;
    text-align:left;

}
/* Subscription Includes Grid */
.prices-included-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4px;
    width: 100%;
}

.prices-included-item {
    color: white;
    font-size: small;
}
/* Data Operations Grid */
.prices-operations-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    width: 100%;
}

.prices-operation-item {
    color: white;
    font-size: small;
    font-weight: 100;
}
/* Additional Services Grid */
.prices-services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    width: 100%;
}

.prices-service-item-label {
    display: flex;
    align-items: center;
    text-align: left;
    vertical-align:text-top;
    gap: 10px;
    cursor: pointer;
    color: white;
    margin: 0;
}

.prices-service-item {
    padding: 12px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    box-sizing: border-box;
    text-align: left;
}
/* Mobile - 1 column (under 500px) */
@media (max-width: 499px) {
    .prices-features-grid {
        grid-template-columns: 1fr;
    }

    .prices-included-grid {
        grid-template-columns: 1fr;
    }

    .prices-operations-grid {
        grid-template-columns: 1fr;
    }

    .prices-services-grid {
        grid-template-columns: 1fr;
    }
}
/* Tablet - 2 columns (500px - 999px) */
@media (min-width: 500px) and (max-width: 999px) {
    .prices-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .prices-included-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .prices-operations-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .prices-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
/* Desktop - 2 columns (1000px+) */
@media (min-width: 1000px) {
    .prices-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .prices-included-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .prices-operations-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .prices-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
/* ===================================================
   DASHBOARD GRID LAYOUT
   =================================================== */

.dashboard-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    width: 100%;
    margin-top: 10px;
    margin-bottom: 20px;
}

.dashboard-tile {
    background: radial-gradient(circle, #1e3c72 50%, #2a5298 75%, black 100%);
    border: solid 2px #a99cff;
    border-radius: 20px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    max-width: 98%;
}

.dashboard-tile-header {
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(169, 156, 255, 0.3);
}

.dashboard-tile-title {
    font-size: large;
    font-weight: 600;
    color: gold;
    margin: 0;
}

.dashboard-tile-search {
    display: flex;
    gap: 8px;
    margin-bottom: 15px;
    align-items: center;
}

.fans-dashboard-search-input {
    flex: 1;
    background-color: #1e1e1e;
    border: solid 0.25px silver;
    border-radius: 20px;
    padding: 5px 5px;
    color: white;
    font-size: medium;
    max-height: 25px;
    width: 100px;
}

    .fans-dashboard-search-input:focus {
        outline: none;
        border-color: gold;
        box-shadow: 0 0 8px rgba(255, 215, 0, 0.3);
    }

.dashboard-search-btn {
    background-color: transparent;
    border: none;
    color: white;
    cursor: pointer;
    /*padding: 8px 12px;*/
    padding: 0 5px 0 5px;
    font-size: large;
    transition: color 0.3s ease;
}

    .dashboard-search-btn:hover {
        color: gold;
    }

.fans-dashboard-table {
    width: 100%;
    border-collapse: collapse;
}

    .fans-dashboard-table thead {
        background-color: rgba(169, 156, 255, 0.1);
        border-bottom: 1px solid rgba(169, 156, 255, 0.3);
    }

    .fans-dashboard-table th {
        padding: 5px;
        text-align: left;
        color: gold;
        font-weight: 600;
        font-size: small;
        vertical-align: top;
    }

    .fans-dashboard-table td {
        padding: 5px;
        color: white;
        font-size: small;
        border-bottom: 1px solid rgba(169, 156, 255, 0.1);
        vertical-align: top;
    }

    .fans-dashboard-table tbody tr:hover {
        background-color: rgba(169, 156, 255, 0.05);
    }

.fans-color-white {
    color: white;
}

.fans-dashboard-header-icon,
.fans-dashboard-data-icon {
    width: 30px;
    min-width: 30px;
    max-width: 30px;
    text-align: left;
    vertical-align: top;
    color: white;
}

.fans-dashboard-header-time,
.fans-dashboard-data-time {
    white-space: normal;
    word-break: break-word;
    vertical-align: top;
    text-align: left;
}

.fans-dashboard-header-name,
.fans-dashboard-data-name {
    overflow-wrap: break-word;
    word-break: break-word;
    vertical-align: top;
}

.fans-tile-table-border {
    border-bottom: solid 1px #a99cff !important;
}

.tile-button-bar {
    background-color: transparent;
}

.fans-tile-embedded-buttonbar-icon {
    color: white;
    font-size: 256px;
}

/* Responsive breakpoints for dashboard */
/* Mobile - 1 column (under 700px) */
@media (max-width: 699px) {
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
}
/* Tablet - 2 columns (700px to 1199px) */
@media (min-width: 700px) and (max-width: 1199px) {
    .dashboard-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
/* Desktop - 3 columns (1200px+) */
@media (min-width: 1200px) {
    .dashboard-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
/* ===================================================
   DASHBOARD & UTILITY STYLES
   =================================================== */

.fans-dashboard-capacitybar {
    width: 100%;
    padding: 10px 0;
    color: white;
    background-color: black;
    margin-top: 10px;
}

.fans-dashboard-capacitybar-parentdiv {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    align-items: center;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 0;
}

@media (max-width: 480px) {
    .fans-dashboard-capacitybar-parentdiv {
        gap: 8px;
        font-size: x-small;
    }
}

.fans-dashboard-capacitybar-childdiv {
    white-space: nowrap;
    font-size: small;
}

.fans-page-footer {
    width: 100%;
    text-align: center;
    padding: 5px;
    background-color: #000;
    border-top: 1px solid #a99cff;
    position: sticky;
    bottom: 0;
    z-index: 100;
}

.fans-securitycode-div {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin: 15px 0;
}
/* Mobile first - full width under 700px */
@media (max-width: 699px) {
    .fans-securitycode-number {
        width: 45px;
        height: 45px;
        font-size: x-large !important;
        font-weight: 100 !important;
        text-align: center;
        background-color: #1e1e1e !important;
        color: white !important;
        border: 1px solid #a99cff;
        border-radius: 8px;
        font-family: monospace !important;
    }

        .fans-securitycode-number:focus {
            outline: none;
            border-color: gold;
            box-shadow: 0 0 8px rgba(255, 215, 0, 0.3);
        }
}
/* Tablet and up - constrain to 768px */
@media (min-width: 700px) {
    .fans-securitycode-number {
        width: 45px;
        height: 45px;
        font-size: 32px !important;
        font-weight: 500 !important;
        text-align: center;
        background-color: #1e1e1e !important;
        color: white !important;
        border: 1px solid #a99cff;
        border-radius: 8px;
        font-family: monospace !important;
    }

        .fans-securitycode-number:focus {
            outline: none;
            border-color: gold;
            box-shadow: 0 0 8px rgba(255, 215, 0, 0.3);
        }
}
/* ===================================================
   TEXT UTILITIES
   =================================================== */

.white-text-shadow {
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.yellow-text-shadow {
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.fans-text-decoration-none {
    text-decoration: none !important;
}

.fans-text-align-right {
    text-align: right;
}

.pb-3 {
    padding-bottom: 1rem;
}

.px-4 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.fans-beta-header {
    color: #ff6b6b;
    font-weight: 600;
}

.fans-dashboard-tile-messages,
.fans-dashboard-tile-tasks,
.fans-dashboard-tile-appointments {
    flex: 1 1 400px;
    min-width: 350px;
    max-width: 500px;
    background: linear-gradient(135deg, #1e3a8a 0%, #7c3aed 100%);
    border-radius: 15px;
    padding: 20px;
    border: 2px solid rgba(255, 215, 0, 0.3);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

.fans-dashboard-tiles-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px;
    justify-content: flex-start;
    max-width: 100%;
    box-sizing: border-box;
}

.fans-dashboard-tile-title {
    font-size: medium;
    font-weight: 600;
    color: gold;
    display: block;
}

.thin-hr {
    border: none;
    border-top: 1px solid #555;
    margin: 10px 0;
}

.fans-help-icon {
    cursor: help;
    font-size: small;
    color: gold;
    margin-left: 5px;
    vertical-align: text-top;
}
/* ===================================================
   SPINNER ANIMATION
   =================================================== */

#spinnericon {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

#spinnerdiv {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000000;
    font-size: 92px;
    background-color: rgba(0, 0, 0, 0.7);
    display: none;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100vw;
    color: gold;
}
/* ===================================================
   AUTOFILL BACKGROUND FIX
   =================================================== */

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px #1e1e1e inset !important;
    -webkit-text-fill-color: white !important;
    transition: background-color 5000s ease-in-out 0s;
}

select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus,
select:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px #1e1e1e inset !important;
    -webkit-text-fill-color: white !important;
    transition: background-color 5000s ease-in-out 0s;
}
/* ===================================================
   REMOVE NUMBER INPUT SPINNERS
   =================================================== */
/* Chrome, Safari, Edge, Opera */
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
/* Firefox */
input[type="number"] {
    -moz-appearance: textfield;
}
/* ===================================================
   CART TABLE STYLES
   =================================================== */

.fans-cart-table {
    width: 100%;
    border-collapse: collapse;
    color: white;
}

.fans-cart-header {
    background-color: rgba(169, 156, 255, 0.2);
    color: gold;
    font-weight: 600;
    font-size: small;
    padding: 12px;
    text-align: left;
    border-bottom: 2px solid #a99cff;
}

.fans-cart-data {
    padding: 12px;
    font-size: small;
    color: white;
    border-bottom: 1px solid rgba(169, 156, 255, 0.1);
}

.fans-cart-footer {
    padding: 12px;
    font-size: small;
    color: white;
    font-weight: 600;
    border-top: 1px solid rgba(169, 156, 255, 0.3);
}

.fans-font-bold {
    font-weight: bold;
}

.fans-text-align-center {
    text-align: center;
}

.fans-text-align-left {
    text-align: left;
}

.fans-text-align-right {
    text-align: right;
}

.fans-vertical-align-top {
    vertical-align: top;
}

.fans-nowrap {
    white-space: nowrap;
}

.fans-otp-setup-caption {
    background-color: transparent;
    border: none !important;
    font-size: small;
    font-weight: 100;
    width:50px;
    height: 30px;
    margin:10px;
    color:gold;
    vertical-align:middle;
}
.fans-otp-setup-data {
    background-color: transparent;
    border: solid .25px blue !important;
    font-size: small;
    font-weight: 300;
    width: 100%;
    height: 25px;
    margin: 10px;
    color: white;
    vertical-align: middle;
    padding-left:5px; 
    padding-right: 10px;
}
.fans-otp-copypaste-root-div {
    display: inline-flex;
    width: 100%;
}