
/* ==========================================================================
   GLOBAL INPUT VALIDATION OVERRIDE
   Paste this at the BOTTOM of site.css to override all defaults
   ========================================================================== */

/* Container alignment */
.container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0;
    position: relative;
    z-index: 1;
}

img {
    user-select: none;
    pointer-events: none;
}
/* Main content alignment */
main {
    padding: 0;
    min-height: 100vh;
    width: 100%;
}

.pb-3 {
    padding-bottom: 0 !important;
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    height: 100%;
    width: 100%;
}

body {
    min-height: 100vh;
    width: 100%;
    margin: 0;
    padding: 0;
    background: white;
    background-image: none !important; /* Ensure no blue gradients */
    font-family: -apple-system, system-ui, BlinkMacSystemFont, 'Segoe UI', Roboto, Ubuntu;
    font-size: 14px;
    line-height: 1.5;
    overflow-x: hidden;
    position: relative;
}

/* Button styles */
.my-license-btn {
    color: #fff !important;
    font-size: 16px;
    transition: all 0.3s ease;
    padding: 5px 10px !important;
}

    .my-license-btn:hover {
        color: #00ff49 !important;
    }

.free-access-button {
    border: none;
    font-size: 16px;
    cursor: pointer;
    border-radius: 6px;
    color: #00ff49 !important;
    transition: all 0.2s ease;
    padding: 12px 10px !important;
    background: rgba(0, 255, 73, 0.25);
}

    .free-access-button:hover {
        background: rgba(0, 255, 73, 0.3);
        box-shadow: 0 4px 12px rgba(0, 255, 73, 0.25);
    }

    .free-access-button:active {
        background: rgba(0, 255, 73, 0.25) !important;
        transform: translateY(2px);
        box-shadow: none;
    }

.creditCardDemoComponent_x2025_wrapper {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    max-width: 400px;
    margin: 20px auto;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    background: #fff;
}

.creditCardDemoComponent_x2025_inputContainer {
    display: flex;
    align-items: center;
    border: 2px solid #e1e1e1;
    border-radius: 6px;
    padding: 8px 12px;
    background: white;
    transition: border-color 0.3s ease;
}

    .creditCardDemoComponent_x2025_inputContainer:focus-within {
        border-color: #4a90e2;
    }

.creditCardDemoComponent_x2025_cardLogo {
    margin-left: 10px;
    line-height: 1;
    opacity: 0;
    transition: opacity 0.3s ease;
    order: 2;
    width: 32px !important;
    height: 20px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0; /* Hide any text content */
}

    .creditCardDemoComponent_x2025_cardLogo img,
    .creditCardDemoComponent_x2025_cardLogo svg {
        width: 100%;
        height: 100%;
        object-fit: contain;
        max-width: 32px;
        max-height: 20px;
    }

    .creditCardDemoComponent_x2025_cardLogo.visible {
        opacity: 1;
    }

.creditCardDemoComponent_x2025_input {
    border: none;
    outline: none;
    font-size: 18px;
    width: 100%;
    padding: 4px;
    color: #333;
    letter-spacing: 1px;
    order: 1;
}

.creditCardDemoComponent_x2025_cardName {
    margin-top: 8px;
    font-size: 14px;
    color: #666;
    text-align: center;
}



/* Container styles */
.chronosphere-page {
    line-height: 1.6;
    color: #333;
    display: grid;
    place-items: center;
}

.chronosphere-container {
    background-color: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

/* Content wrapper */
.chronosphere-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
}

/* Header styles */
.chronosphere-header {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

/* Controls grid */
.controls-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0.75rem;
    width: 100%;
}

/* Input group */
.input-group {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
}

/* Input styles */
.timestamp-input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    box-sizing: border-box;
    height: 2.75rem;
    transition: border-color 0.3s ease;
    grid-column: 1 / -1;
}

    .timestamp-input:focus {
        outline: none;
        border-color: #3498db;
        box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.1);
    }

/* Card styles */
.time-card {
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #ddd;
    background-color: #fff;
    display: grid;
    gap: 0.5rem;
    transition: box-shadow 0.3s ease;
}

    .time-card:hover {
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }

/* Card text styles */
.time-card-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #666;
    font-weight: 500;
}

.time-card-value {
    font-size: 1.1rem;
    color: #2c3e50;
    font-weight: 500;
}

/* Button styles */
.preset-btn {
    background: #fff;
    border: 1px solid #ddd;
    padding: 0.75rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    height: 2.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    white-space: nowrap;
    color: #2c3e50;
    font-weight: 500;
}

    .preset-btn:hover {
        background: #f8f9fa;
        border-color: #3498db;
        color: #3498db;
    }

    .preset-btn:focus {
        outline: none;
        box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.1);
    }

/* Error message styles */
.error-message {
    color: #e74c3c;
    padding: 1rem;
    border: 1px solid #e74c3c;
    border-radius: 8px;
    display: none;
    text-align: center;
    background-color: rgba(231, 76, 60, 0.05);
    font-size: 0.9rem;
}

/* Responsive styles */
@media (max-width: 600px) {
    .chronosphere-container {
        padding: 1.5rem;
        gap: 1.5rem;
        width: 100%;
        margin: 0;
        border-radius: 0;
    }

    .controls-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .timestamp-input {
        grid-column: span 2;
    }

    .chronosphere-header {
        font-size: 1.5rem;
    }
}

/*show more exmaples*/
.show-more-examples-container {
    margin: 50px 0;
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
}

    .show-more-examples-container a {
        padding: 10px 20px;
    }
/* Main containers */
.main-container {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 100px;
    padding: 19px;
    background: white;
    margin-bottom: 15px;
    border-radius: 15px;
    transition: transform ease 0.3s;
}

    .main-container:hover {
    }


@media (max-width: 768px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .home-container {
        grid-template-columns: 1fr;
        padding-top: 2rem;
    }
}

.bells-container {
    display: flex;
    gap: 30px;
    align-items: center;
}

.loading-controls {
    display: flex;
    align-items: center;
    gap: 40px;
}

/* Bell styles */
.notification-bell-container {
    position: relative;
    display: inline-block;
    padding: 10px;
    cursor: pointer;
}

.bell-icon {
    width: 24px;
    height: 24px;
    position: relative;
    transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

    .bell-icon svg {
        width: 100%;
        height: 100%;
        fill: none;
        stroke: #1a1f36;
        stroke-width: 2;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

    .bell-icon.blue svg {
        width: 100%;
        height: 100%;
        fill: none;
        stroke: #3b82f6;
        stroke-width: 2;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

    .bell-icon.green svg {
        width: 100%;
        height: 100%;
        fill: none;
        stroke: #00cd3b;
        stroke-width: 2;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

    .bell-icon.red svg {
        width: 100%;
        height: 100%;
        fill: none;
        stroke: #ff001f;
        stroke-width: 2;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

    .bell-icon.violet svg {
        width: 100%;
        height: 100%;
        fill: none;
        stroke: #9a09d7;
        stroke-width: 2;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

.notification-bell-container:active .bell-icon {
    transform: scale(0.9);
}

/* Mute slash */
.mute-slash {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 28px;
    height: 2px;
    background-color: #dc2626;
    transform: translate(-50%, -50%) rotate(45deg) scaleX(1);
    transform-origin: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.notification-bell-container.muted .mute-slash {
    opacity: 1;
}

/* Notification badge */
.notification-badge {
    position: absolute;
    top: 2px;
    right: 2px;
    background-color: #ef4444;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    opacity: 0;
    transform: scale(0);
    transition: all 0.2s ease;
}

.notification-bell-container.has-notifications .notification-badge {
    opacity: 1;
    transform: scale(1);
}

/* Rainbow Segmented Spinner */
.independent-spinner {
    width: 40px;
    height: 40px;
    display: inline-block;
    position: relative;
}

    .independent-spinner::before {
        content: '';
        display: block;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: conic-gradient( #FF0000 0deg 60deg, transparent 60deg 72deg, #FFA500 72deg 132deg, transparent 132deg 144deg, #FFFF00 144deg 204deg, transparent 204deg 216deg, #00FF00 216deg 276deg, transparent 276deg 288deg, #0000FF 288deg 348deg, transparent 348deg 360deg );
        animation: continuous-spinner 1.2s linear infinite;
    }

    .independent-spinner::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 32px;
        height: 32px;
        background: white;
        border-radius: 50%;
    }

@keyframes continuous-spinner {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Horizontal Progress Bar */
.progress-container {
    width: 150px;
    height: 4px;
    background-color: #f3f3f3;
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}

.progress-bar {
    position: absolute;
    width: 40%;
    height: 100%;
    background-color: #6366f1;
    border-radius: 2px;
    animation: block-progress 3s ease-in-out infinite;
}

@keyframes block-progress {
    0% {
        left: -40%;
    }

    45% {
        left: 100%;
    }

    50% {
        left: 100%;
    }

    95% {
        left: -40%;
    }

    100% {
        left: -40%;
    }
}

@media (max-width: 768px) {
    .siticone-grid-container {
        grid-template-columns: 1fr;
    }

    .siticone-feature-card {
        min-height: auto;
    }
}

/* Button Styles */
.btn {
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-dark-custom {
    background: #0f172b;
    color: white;
}

    .btn-dark-custom:hover {
        background: #314158;
    }

.bg-white {
    background: white;
    color: #1a1a1a;
    border: 1px solid #e5e7eb;
}

    .bg-white:hover {
        background: #f3f4f6;
    }

/* Utility Classes */
.fw-medium {
    font-weight: 500;
}

.text-muted {
    color: #6b7280;
}

.text-primary {
    color: #0066ff;
}

.w-100 {
    width: 100%;
}

.mt-3 {
    margin-top: 1rem;
}

.gap-3 {
    gap: 1rem;
}

.d-flex {
    display: flex;
}

/* Mobile Toggle Button */
.mobile-menu-button {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
    transition: all 0.3s ease;
}

    .mobile-menu-button span {
        width: 100%;
        height: 1.5px;
        background-color: #fff;
        border-radius: 1px;
        transition: all 0.25s cubic-bezier(0.77, 0, 0.175, 1);
    }

        /* Make middle line shorter for modern look */
        .mobile-menu-button span:nth-child(2) {
            width: 70%;
            align-self: flex-end;
        }

    /* Subtle hover effect */
    .mobile-menu-button:hover span {
        background-color: rgba(255, 255, 255, 0.8);
    }

        .mobile-menu-button:hover span:nth-child(2) {
            width: 100%;
        }

    /* Active state - smooth animation to X */
    .mobile-menu-button.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
        width: 100%;
    }

    .mobile-menu-button.active span:nth-child(2) {
        opacity: 0;
        transform: translateX(-10px);
    }

    .mobile-menu-button.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
        width: 100%;
    }

/* Responsive Design */
@media (max-width: 1024px) {
    .home-container {
        grid-template-columns: 1fr;
        padding: 2rem 0;
        gap: 2rem;
    }

    .container {
        padding: 0 1rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {

    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .d-flex {
        flex-direction: column;
    }

    .mobile-toggle.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-toggle.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }
}

/*RESPONSIVE DESIGN - MEDIA QUERIES*/
@media (max-width: 1440px) {
    /* Styles for screens 1440px and below */
    .container {
        padding: 0 20px;
    }
}

@media (max-width: 1385px) {
    .hero-title {
        font-size: 2.685rem;
    }

    .hero-description {
        font-size: 1rem;
    }
}

@media (max-width: 1350px) {
    /* Styles for screens 1350px and below */
    .hero-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 1320px) {
    /* Styles for screens 1350px and below */
    .hero-title {
        font-size: 2.1rem;
    }
}

@media (max-width: 1300px) {
    /* Styles for screens 1300px and below */
    .home-container {
        margin: 0 auto;
        grid-template-columns: repeat(1, 1fr);
    }

    .hero-section {
        text-align: center;
        margin: 30px auto;
    }

    .hero-title {
        font-size: 3.675rem;
    }

    .hero-description {
        margin-bottom: 2rem;
        line-height: 1.5;
        font-size: 1.125rem;
    }

    .siticone-grid-container {
        grid-template-columns: repeat(4, 1fr);
        gap: 0rem;
    }

        .siticone-grid-container .siticone-feature-card .siticone-card-icon {
            margin: 10px auto;
        }

    .custom-green-card-container {
        margin: 0 auto;
    }

    .progress-container {
        width: 200px;
    }
}

@media (max-width: 1251px) {
    /* Styles for screens 1251px and below */
    .header-item-faq {
        display: none;
    }
}

@media (max-width: 1300px) {
    /* Styles for screens 1200px and below */
    .mobile-menu-button {
        display: flex;
    }
}

@media (max-width: 1200px) {
    /* Styles for screens 1200px and below */
    .hero-title {
        font-size: 2.275rem;
    }

    .hero-description {
        font-size: 1rem;
    }
}

@media (max-width: 1151px) {
    /* Styles for screens 1151px and below */
}

@media (max-width: 1100px) {
    /* Styles for screens 1100px and below */
}

@media (max-width: 1051px) {
    /* Styles for screens 1051px and below */
}

@media (max-width: 1000px) {
    /* Styles for screens 1000px and below */
}

@media (max-width: 951px) {
    /* Styles for screens 951px and below */
}

@media (max-width: 900px) {
    /* Styles for screens 900px and below */
    .siticone-grid-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 0rem;
    }
}

@media (max-width: 851px) {
    /* Styles for screens 851px and below */
    .progress-container {
        width: 100px;
    }
}

@media (max-width: 800px) {
    /* Styles for screens 800px and below */
}

@media (max-width: 751px) {
    /* Styles for screens 751px and below */
    .notification-bell-container-purple,
    .install-updates-btn,
    .dash-nav-dark,
    .notification-bell-container-red {
        display: none;
    }
}

@media (max-width: 700px) {
    /* Styles for screens 700px and below */
}

@media (max-width: 651px) {
    /* Styles for screens 651px and below */
}

@media (max-width: 600px) {
    /* Styles for screens 600px and below */
    .main-container {
        display: grid;
        gap: 20px;
    }

    .download-btn,
    .green-button {
        display: none;
    }

    .hero-title {
        font-size: 1.875rem;
    }

    .nav-section {
        display: grid;
    }

    .time-nav-group {
        display: grid;
        grid-template-columns: repeat(3, 1fr)
    }
}

@media (max-width: 551px) {
    /* Styles for screens 551px and below */
    .drs24k-container {
        margin: 15px auto;
        display: grid;
        gap: 40px;
        padding: 20px;
        grid-template-columns: repeat(1, 1fr);
    }
}

@media (max-width: 500px) {
    /* Styles for screens 500px and below */
    .siticone-grid-container {
        grid-template-columns: repeat(1, 1fr);
        gap: 0rem;
    }
}

@media (max-width: 451px) {
    /* Styles for screens 451px and below */
    .custom-green-card-wrapper {
        padding: 0.785rem;
    }

    .siti-buttons-container {
        display: grid;
        gap: 20px;
        grid-template-columns: repeat(1, 1fr);
    }
}

@media (max-width: 400px) {
    /* Styles for screens 400px and below */
    .nav-section {
        display: grid;
        align-items: center;
        gap: 16px;
    }

    .hero-title {
        font-size: 1.275rem;
    }
}

@media (max-width: 361px) {
    /* Styles for screens 361px and below */
    .nav-section {
        display: none;
    }
}

@media (max-width: 351px) {
    /* Styles for screens 351px and below */
    .siti-toggles-container {
        display: grid;
        gap: 20px;
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 300px) {
    /* Styles for screens 300px and below */
}

@media (max-width: 251px) {
    /* Styles for screens 251px and below */
}

@media (max-width: 200px) {
    /* Styles for screens 200px and below */
}

@media (max-width: 151px) {
    /* Styles for screens 151px and below */
}

@media (max-width: 100px) {
    /* Styles for screens 100px and below */
}



/*-------------------*/
