.ml-10 {
    margin-left: 10px;
}

.favorite-checked {
    color: red !important;
}

:root {
    /* Colors */
    --primary-color: #646cff;
    --highlight-color: #00000014;
    --background-color: #000;
    --text-color: rgba(255, 255, 255, 0.87);
    --border-color: rgba(255, 255, 255, 0.05);

    /* Transitions */
    --transition-duration: 0.4s;
    --transition-timing: cubic-bezier(0.4, 0, 0.2, 1);

    /* Tabs specific */
    --tabs-gap: 0.5rem;
    --tab-padding: 0.75rem 1.25rem;
    --tab-border-radius: 8px;
    --tab-font-size: 1rem;
    --tab-font-weight: 500;
    --tabs-nav-padding: 0.375rem;
}

/* Reset */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Tabs Container */
.tabs {
    width: 100% !important;
    margin: 2rem !important;
}

/* Tabs Navigation */
.tabs-nav {
    position: relative !important;
    display: flex !important;
    gap: 0.5rem !important;
    //background: #00000014 !important;
    padding: 0.375rem !important;
    border-radius: 8px !important;
    /* margin-bottom: 2rem !important; */
    isolation: isolate !important;
    /* Create new stacking context */
    justify-content: center !important;
    margin: 0px auto 2rem auto !important;
    width: 50% !important;
}

/* Tab Buttons */
.tab-button {
    flex: 1 !important;
    all: unset !important;
    position: relative !important;
    padding: 0.75rem 1.25rem !important;
    font-size: 1.5rem !important;
    font-weight: 500 !important;
    color: #000000 !important;
    border-radius: 8px !important;
    cursor: pointer !important;
    transition: color 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    text-align: center !important;
    white-space: nowrap !important;
    z-index: 1 !important;
    text-transform: uppercase !important;
    border: 1px solid #00000014 !important;
}

.tab-button:hover {
    color: #000000;
}

.active {
    color: #fff !important;
    background-color: #000000 !important;
}

.tab-button[aria-selected="true"] {
    color: #ffffff !important;
}

/* Moving Indicator */
.tabs-indicator {
    position: absolute !important;
    top: 0.375rem !important;
    bottom: 0.375rem !important;
    left: 0 !important;
    border-radius: calc(8px - 2px) !important;
    background: #000000 !important;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    width: 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    pointer-events: none !important;
    z-index: 0 !important;
    /* box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.05), 0 4px 12px rgba(0, 0, 0, 0.1) !important; */
    will-change: transform, width !important;
}



/* Tab Panels */
.tab-panel {
    padding: 2rem !important;
    background: transparent !important;
    border-radius: 8px !important;
    display: none !important;
    transform-origin: top !important;
    animation: slideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.05), 0 4px 12px rgba(0, 0, 0, 0.1) !important;
}

.tab-panel[aria-hidden="false"] {
    display: block !important;
}

/* Animations */
@keyframes slideIn {
    from {
        opacity: 0 !important;
        transform: translateY(-8px) scale(0.98) !important;
    }

    to {
        opacity: 1 !important;
        transform: translateY(0) scale(1) !important;
    }
}

/* Focus styles */
.tab-button:focus-visible {
    outline: 2px solid #646cff !important;
    outline-offset: 2px !important;
}

/* Content styling */
.tab-panel h2 {
    margin-bottom: 1rem !important;
    font-size: 1.5rem !important;
    color: #646cff !important;
}

.tab-panel p {
    line-height: 1.6 !important;
    opacity: 0.9 !important;
}


.custom-body {
      font-family: 'Arial', sans-serif;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #495057;
    }

    .custom1-container {
      text-align: center;
      padding: 20px;
      max-width: 500px;
	background: unset !important;
border: unset !important;
box-shadow: unset !important;
    }

    .icon {
      font-size: 64px;
      color: #6c757d;
      margin-bottom: 20px;
    }

    .title {
      font-size: 24px;
      font-weight: bold;
      margin-bottom: 10px;
    }

    .message {
      font-size: 16px;
      color: #6c757d;
      margin-bottom: 20px;
    }

@media only screen and (max-width: 767px) {
    .tab-button{
        font-size: 12px !important;
    }

    .tabs {
        width: 100% !important;
        margin: 0px !important;
    }

    .tabs-nav {
        background: unset !important;
    }
}

