@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');



* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
    font-style: normal;
}

html {
    font-size: 18px;
}

[contenteditable="true"]:empty:before {
    content: attr(data-placeholder);
    color: var(--text-disabled, #888);
    font-style: italic;
    cursor: text;
}

select option {
    background-color: var(--bg-secondary, #1e1e1e);
}

.page {
    width: calc(100vw - calc(100vw - 100%));
    min-height: 100vh;
    background-color: #232323;
    overflow-y: hidden;
}

.light-mode .page{
    background-color: #d6d6d6;
}

.hidden {
    opacity: 0 !important;
    pointer-events: none !important;
}

.full-panel{
    display: flex;
}

.left-section{
    background: var(--bg-primary, #0e0e0e);
    width: calc(99px - 25px);
    margin: 12.5px 0 12.5px 12.5px;
    border-radius: 10px;
}

.right-section{
    width: calc(450px - 25px);
    background: var(--bg-primary, #0e0e0e);
    margin: 12.5px 12.5px 12.5px 0;
    border-radius: 10px;
}

.center-section-nav-content{
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.center-section {
    width: calc(100% - 25px);
    position: relative;
    max-height: 100vh;
    min-height: calc(100vh - 25px);
    overflow-y: auto;
    padding-bottom: 0.5rem;
    transition: left 0.3s ease-out;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    background-color: var(--bg-primary, #0A0A0A);
    margin: 12.5px;
    padding: 0;
}

.bg-video{
    position: absolute;
    width: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) !important;
    /* height: 100vh; */
    filter: blur(30px);
}

.bg-grain-gradient-container{
    width: 30%;
    height: 30%;
    /* border: 1px dashed rgba(128, 128, 128, 0.315); */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.custom_input_lower_level{
    display: flex;
    padding: 7px 0;
    justify-content: space-between;
    align-items: center;
}

.custom_input_lower_level select{
    padding: 5px 10px 5px 5px;
    border-radius: 10px;
}

.send-button{
    background-color: #009E82;
    width: 35px;
    height: 32px;
    border-radius: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 7px;
    padding: 0;
    color: #dfdfdf;
    font-size: 13px;
    box-shadow: 2px 2px 10px #00000036;
}

.d-none {
    display: none !important;
}

/* init fades */

.init-fade {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    pointer-events: none;
}

.init-fade.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.init-fade:nth-child(1) {
    transition-delay: 0.1s;
}

.init-fade:nth-child(2) {
    transition-delay: 0.3s;
}

.init-fade:nth-child(3) {
    transition-delay: 0.5s;
}

.init-fade:nth-child(4) {
    transition-delay: 0.7s;
}


/* directional fades */

/* Directional wipe keyframes using clip-path */
@keyframes fadeInLeftMask {
    from {
        clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
        opacity: 1;
    }

    to {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
        opacity: 1;
    }
}

@keyframes fadeInRightMask {
    from {
        clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
        opacity: 1;
    }

    to {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
        opacity: 1;
    }
}

@keyframes fadeInUpMask {
    from {
        clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
        opacity: 1;
    }

    to {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
        opacity: 1;
    }
}

@keyframes fadeInDownMask {
    from {
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        opacity: 1;
    }

    to {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
        opacity: 1;
    }
}

/* Directional fade-out using clip-path */
@keyframes fadeOutLeftMask {
    from {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
        opacity: 1;
    }

    to {
        clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
        opacity: 1;
    }
}

@keyframes fadeOutRightMask {
    from {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
        opacity: 1;
    }

    to {
        clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
        opacity: 1;
    }
}

@keyframes fadeOutUpMask {
    from {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
        opacity: 1;
    }

    to {
        clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
        opacity: 1;
    }
}

@keyframes fadeOutDownMask {
    from {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
        opacity: 1;
    }

    to {
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        opacity: 1;
    }
}

/* Animation classes */
.fade-in-left {
    animation: fadeInLeftMask 0.8s ease-in-out forwards;
}

.fade-in-right {
    animation: fadeInRightMask 0.8s ease-in-out forwards;
}

.fade-in-up {
    animation: fadeInUpMask 0.8s ease-in-out;
}

.fade-in-down {
    animation: fadeInDownMask 0.8s ease-in-out forwards;
}

.fade-out-left {
    animation: fadeOutLeftMask 0.8s ease-in-out forwards;
}

.fade-out-right {
    animation: fadeOutRightMask 0.8s ease-in-out forwards;
}

.fade-out-up {
    animation: fadeOutUpMask 0.8s ease-in-out forwards;
}

.fade-out-down {
    animation: fadeOutDownMask 0.8s ease-in-out forwards;
}

/* Diagonal effect */
@keyframes fadeInDiagonalMask {
    from {
        clip-path: polygon(0 100%, 0 100%, 0 100%, 0 100%);
        opacity: 1;
    }

    to {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
        opacity: 1;
    }
}

.fade-in-diagonal {
    animation: fadeInDiagonalMask 0.8s ease-in-out forwards;
}


/* top center circle */

.top_center_circle {
    width: 100vw;
    height: 100vw;
    position: fixed;
    background-color: rgba(255, 255, 255, 0.491);
    border-radius: 50%;
    top: 0%;
    left: 50%;
    transform: translate(-50%, -120%);
    filter: blur(100px);
    display: block;
    animation: top_center_circle_animation 1s ease alternate infinite;
    transition: opacity 0.5s ease;
    opacity: 1;
    z-index: 3;
}

@keyframes top_center_circle_animation {
    0% {
        transform: translate(-50%, -120%);
    }

    100% {
        transform: translate(-50%, -100%);
    }
}



/* hero text section */

.sec-1-container {
    margin: 0 auto;
    width: fit-content;
    padding-top: 180px;
    /* margin-bottom: 10rem; */
}

.main-logo-container-wrapper {
    background: linear-gradient(to bottom left, #ffffff39, rgb(30, 30, 30), rgb(30, 30, 30), rgb(30, 30, 30));
    width: fit-content;
    padding: 0.0938rem;
    border-radius: 50%;
    margin: 0 auto;
    margin-bottom: 1.5625rem;
}

.main-logo-container {
    width: 3.75rem;
    height: 3.75rem;
    background-color: #d9d9d930;
    border-radius: 50%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1.25rem;
    box-sizing: border-box;
}

.main-logo-container>img {
    width: 1.875rem;
}

.gradient-rainbow-animated {
    background-image: linear-gradient(90deg, #2e2e2e, #2e2e2e, #2e2e2e, #5f5f5f, #5f5f5f, #5f5f5f, orangered, #2e2e2e);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
    animation: rainbow-animation 18s linear infinite;
}

@keyframes rainbow-animation {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 200% 50%;
    }
}

.sec-1-text-1 {
    text-align: center;
    color: #d9d9d97a;
    font-weight: 200;
    margin: 0.0rem 0;
    font-size: 2.1875rem;
}

.light-mode .sec-1-text-1 {
    color: #000000ab;
}

.sec-1-text-2 {
    font-size: 1.0rem;
    color: rgba(255, 255, 255, 0.258);
    margin-top: 0.8125rem;
    text-align: center;
}

.light-mode .sec-1-text-2 {
    color: rgba(0, 0, 0, 0.473);
}


/* custom_input_1 */

.blur-999{
    filter: blur(999px);
    opacity: 0;
}

.ai-loader-text-animation-container{
    display: flex;
    /* justify-content: start; */
    align-items: start;
}

.ai-loader-outer-container{
    position: relative;
    padding: 40px 10px 10px 10px;
}

.ai-loader-container{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: #232323; */
    border-radius: 25px;
    background: linear-gradient(90deg, #006B5C, #009E82, #006B5C, #00D4AA, #4FFFDB );
    animation: gradient 5s ease infinite;
    background-size: 400% 400%;
    filter: blur(0px);
    opacity: 1;
    transition: all 0.5s ease;
    display: flex;
}

@keyframes gradient {
  0% { background-position: 0% 0%; }
  50% { background-position: 100% 100%; }
  100% { background-position: 0% 0%; }
}

/* ai loader-2 */
.custom-audio-loader {
    display: flex;
    align-items: center;
    height: 16px;
    margin-top: 10px;
    margin-left: 15px;
}

.custom-audio-bar {
  display: inline-block;
  width: 2px;
  height: 57%;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  animation: custom-scale-up4 1s linear infinite;
}

.custom-audio-bar:nth-child(2) {
  height: 100%;
  margin: 0 3px;
  animation-delay: .25s;
}

.custom-audio-bar:nth-child(3) {
  animation-delay: .5s;
}

@keyframes custom-scale-up4 {
  20% {
    background-color: #000000;
    transform: scaleY(1.5);
  }
  40% {
    transform: scaleY(1);
  }
}

.ai-loader {
    /* color: #ffffff70; */
    /* position: fixed; */
    left: calc(50% - 330px);
    /* transform: translate(-50%, 0); */
    z-index: 6;
    bottom: 8.125rem;
    background: #00000052;
    backdrop-filter: blur(10px);
    width: fit-content;
    padding: 0.1875rem 0.625rem;
    border-radius: 0.3125rem;
    overflow: hidden;
    font-size: 0.8125rem;
    background-image: linear-gradient(90deg, #00000057, #00000057, #00000057, #00000057, #00000057, #00000057, rgb(0 0 0), #ffffff57);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    /* font-weight: bold; */
    animation: rainbow-animation 1.2s linear infinite reverse;
    opacity: 1;
    transition: opacity 0.5s ease-in;
    margin-bottom: 8px;
    font-size: 13px;
    /* margin-left: 5px; */
    margin-top: 5px;
}

#main-submit-btn {
    cursor: pointer;
}

.main-input-ele-container{
    background-color: #1F1F1F;
    border-radius: 16px;
    display: flex;
    align-items: center;
}

.light-mode .main-input-ele-container {
    background-color: #00957b45;
}

.main-input-ele {
    outline: none;
    width: 100%;
    height: 45px;
    color: white;
    padding: 10px;
    font-size: 14px;

    /* background-color: #ffffff0a; */
    /* margin: 5px; */
    /* border-radius: 16px; */
}

.custom_input_1 {
    width: 60%;
    min-width: 350px;
    padding: 2.5rem;
    /* padding-bottom: 1rem; */
    /* border: 0.0625rem dotted rgba(255, 255, 255, 0); */
    margin: 0 auto;
    max-width: 100vw;
    z-index: 4;
}

.chat_template_heading{
    color: #c9c9c975;
    font-size: 13px;
    margin-left: 10px;
    margin-bottom: 10px;
}

.light-mode .chat_template_heading{
    color: #46464675;
}

.custom_input_2 {
    position: absolute;
    bottom: 30px;
    padding: 1.25rem;
    left: 50%;
    transform: translateX(-50%);
}

.exchange-select {
    background-color: transparent;
    color: grey;
    border: none;
    font-size: 11px;
    margin-left: 0.3125rem;
}

.ci_row_1 {
    font-size: 0.6875rem;
    color: #62626A;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    /* border: 0.5px solid rgba(109, 109, 109, 0.527); */
    padding: 0.5rem;
    border-radius: 5px;
}

.ci_exchange_select_container {
    display: flex;
    align-items: center;
    /* padding: 5px 10px; */
    border-radius: 20px;
    /* background-color: #ffffff0a; */
    padding-left: 18px;
}

.ci_exchange_select_container i {
    color: #585858;
    font-size: 13px;
}

.ci_exchange_select_container>p {
    margin-left: 0.5rem;
}

.ci_connection_status_container {
    display: flex;
    align-items: center;
}

.connection_dot {
    width: 0.3125rem;
    height: 0.3125rem;
    /* background-color: rgb(47, 255, 71); */
    border-radius: 50%;
    margin-right: 0.75rem;
    /* box-shadow: 0 0 0.625rem 0.1875rem green; */
    animation: connection_dot_animation 0.75s linear alternate-reverse infinite;
}

@keyframes connection_dot_animation {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(0);
        opacity: 0;
    }
}

.outer_box_1 {
    width: 100%;
    background-color: #101113;
    padding: 0.625rem;
    border-radius: 1.25rem;
    border: 0.0625rem solid #151517;
}

.box_1 {
    padding: 10px;
    width: 100%;
    background-color: #111111;
    border-radius: 24px;
    /* border: 0.0938rem solid #1b1b1b; */
    backdrop-filter: blur(20px);
    position: relative;
    padding-bottom: 0;
    box-shadow: 0 1px 20px #00000029;
}

.light-mode .bg-table-image{
    opacity: 0.3;
}

.light-mode .box_1{
    background-color: #00957b3b;
}

.sharp_strip {
    width: 30%;
    height: 0.0625rem;
    background: linear-gradient(to right,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0) 10%,
            rgba(255, 255, 255, 0.4) 50%,
            rgba(255, 255, 255, 0) 90%,
            rgba(255, 255, 255, 0) 100%);
    position: absolute;
    left: 3.125rem;
    top: -1px;
    box-shadow: 0 0 5.3125rem 0.0625rem white, 0 0 1.5625rem rgba(255, 255, 255, 0.807);
    animation: sharp_strip_animate 1.4s ease alternate infinite;
}

.sharp_strip_2 {
    width: 30%;
    height: 0.0625rem;
    background: linear-gradient(to right,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0) 10%,
            rgba(255, 255, 255, 0.4) 50%,
            rgba(255, 255, 255, 0) 90%,
            rgba(255, 255, 255, 0) 100%);
    position: absolute;
    left: 3.125rem;
    bottom: -1px;
    /* box-shadow: 0 0 5.3125rem 0.0625rem white, 0 0 1.5625rem rgba(255, 255, 255, 0.807); */
    animation: sharp_strip_animate 1.4s ease alternate infinite;
    opacity: 0.5;
}

@keyframes sharp_strip_animate {
    0% {
        left: 10%;
    }

    100% {
        left: 40%;
    }
}


.box_1>p {
    color: rgb(255, 255, 255);
    padding: 0.9375rem 1.25rem;
    font-size: 0.8125rem;
    width: 100%;
}

.box_1>i {
    color: rgb(255, 255, 255);
    padding: 0 1.25rem;
}

.box_1>i:hover {
    color: rgba(255, 255, 255, 0.8);
}


/* chat templates */

.chat_templates_container {
    width: calc(60% - 5rem);
    display: flex;
    justify-content: space-evenly;
    margin: 0 auto;
    flex-wrap: wrap;
    flex-direction: column;
}

.chat_template {
    width: fit-content;
    color: rgb(255 255 255);
    background-color: rgb(0 0 0 / 37%);
    border: 0.0625rem dashed rgba(255, 255, 255, 0.445);
    padding: 10px;
    border-radius: 1.25rem;
    display: flex;
    align-items: center;
    cursor: pointer;
    margin: 5px;
}

.light-mode .chat_template {
    color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.01);
    border: 0.0625rem dashed rgba(0, 0, 0, 0.445);
}

.chat_template:hover {
    border-color: rgba(255, 255, 255, 0.15);
}

.light-mode .chat_template:hover {
    border-color: rgba(0, 0, 0, 0.15);
}

.chat_template>i {
    text-align: center;
    /* margin-bottom: 0.625rem; */
    font-size: 13px;
    margin-left: 10px;
    color: grey;
}


.chat_template>p {
    font-size: 12px;
    text-align: center;
    color: rgb(209, 209, 209);
}

.light-mode .chat_template>p {
    color: rgb(54, 54, 54);
}



/* text animation */

.container {
    text-align: center;
}

.reveal-text {
    position: relative;
    font-size: 3rem;
    /* font-weight: bold; */
    margin: 1.25rem 0;
    overflow: hidden;
    text-align: center;
    color: rgba(255, 255, 255, 0.44);
}

.reveal-text {
    position: relative;
    font-size: 1.0625rem;
    /* font-weight: bold; */
    margin: 1.25rem 0;
    white-space: nowrap;
    display: inline-block;
    /* Contain the text without shifting */
    width: 100%;
}

.reveal-text span {
    opacity: 0;
    /* Hide the actual text */
}

.reveal-text::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    color: rgba(255, 255, 255, 0.374);
    /* Text color */
    overflow: hidden;
    white-space: nowrap;
    animation: revealText 3s ease forwards;
    mask-image: linear-gradient(to right, black 80%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, black 80%, transparent 100%);
}

@keyframes revealText {
    to {
        width: 100%;
    }
}




/* chat board */

.chat_board {
    width: 37.5rem;
    max-width: 100vw;

    height: calc(100vh - 100px);
    /* background-color: black; */
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, 0%);

}


.chat-container {
    max-width: 37.5rem;
    height: 100%;
    margin: 0 auto;
    /* background-color: #1e1e1e; */
    border-radius: 0.75rem;
    box-shadow: none;
    overflow: hidden;
    padding: 1.0rem;
}

.chat-messages {
    overflow-y: auto;
    height: 100%;
    padding-top: 6.25rem;
    padding-bottom: 6.25rem;
    padding-right: 0.9375rem;
}

.message {
    margin-bottom: 1.0rem;
    clear: both;
    display: flex;
    flex-direction: column;
    position: relative;
}

.message-content {
    padding: 0.875rem 1.125rem;
    display: inline-block;
    max-width: 80%;
    word-wrap: break-word;
    transition: all 0.3s ease;
    position: relative;
    font-size: 0.75rem;
    color: #c8c8c8;
}

.message.user1 {
    align-items: flex-start;
    margin-left: 70px;
}

.message.user2 {
    align-items: flex-end;
}

.user1 .message-content {
    background-color: rgba(255, 255, 255, 0.01);
    border-radius: 1.25rem 1.25rem 1.25rem 0.25rem;
    box-shadow: -3px 0.1875rem 0.625rem rgba(0, 0, 0, 0.05),
        inset 0.0625rem 0.0625rem 0.0625rem rgba(255, 255, 255, 0.05);
    border-left: 0.0625rem solid rgba(255, 255, 255, 0.05);
    color: #ededed;
    font-size: 0.8125rem;
}

.light-mode .user1 .message-content {
    color: #202020;
}



.user2 .message-content {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.025) 0%, rgba(255, 255, 255, 0.02) 100%);
    color: #c8c8c8;
    border-radius: 1.25rem 1.25rem 0.25rem 1.25rem;
    box-shadow: 0.1875rem 0.1875rem 0.625rem rgba(0, 0, 0, 0.05),
        inset 0.0625rem 0.0625rem 0.0625rem rgba(255, 255, 255, 0.05);
    font-size: 0.8125rem;
}

.light-mode .user2 .message-content {
    color: #383838;
    background: #00957b26;
}


/* pagination */

.xo_pagination {
    display: flex;
    justify-content: center;
}

[data-page] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 0.5rem;
    border: 0.125rem solid transparent;
    background-color: #2c2c2c;
    color: #8c8c8c;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 0.95rem;
    margin: 1.875rem 0.3125rem;
}

[data-page]:hover {
    background-color: #3a3a3a;
    border-color: orangered;
    color: #e0e0e0;
}

[data-page].active {
    background-color: orangered;
    color: white;
    border-color: orangered;
}

[data-page].disabled {
    background-color: #242424;
    color: #555;
    cursor: not-allowed;
    pointer-events: none;
}

.pagination-ellipsis {
    color: #666;
    cursor: default;
    background-color: transparent;
    border: none;
}


/* left side panel */

#main_logo {
    position: fixed;
    height: 2.1875rem;

    top: 2.1875rem;
    left: 3.125rem;
}

#left_main_logo {
    width: 20%;

}

#left-side-panel-toggle-btn {
    display: none;
    font-size: 0.875rem;
    padding: 0.9375rem;
    border-radius: 50%;
    background-color: #0d0d0d;
    color: #808080;
    border: 0.0625rem solid #80808080;
    position: fixed;
    right: 1.25rem;
    bottom: 9.375rem;
    z-index: 3;
}

.left-logo-container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 5px;
    color: white;
    font-weight: bold;
    margin-bottom: 1.25rem;
}

.left-side-panel {
    width: 12.5rem;
    height: calc(100vh - 30px);
    background-color: #d9d9d930;
    position: fixed;
    top: 0.9375rem;
    left: 0.9375rem;
    border-radius: 1.25rem;
    padding: 0.9375rem;
    backdrop-filter: blur(20px);
    padding-top: 0.625rem;
    overflow-y: auto;

    left: -200px;
    transition: left 0.3s ease, filter 0.3s ease;
    filter: blur(0px);
    box-shadow: 0 0 0.9375rem rgba(0, 0, 0, 0.2);
    z-index: 4;
    /* background: url(../../mui_assets/images/gredientBackgroundFlipped.png); */
    background-position: left;
    background-size: cover;
    color: white;
    border: 1px solid rgb(184, 184, 184);
}

.left-side-heading {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.6875rem;
    margin-bottom: 0.625rem;
    font-weight: 600;
    margin-left: 0.5rem;
}

.left-side-icon-text {
    background: #d9d9d938;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: white;
    font-weight: 600;
    font-size: 0.875rem;
    padding-left: 0.5rem;
    margin-bottom: 1.25rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 10px;
}

.left-side-icon-text>i {
    margin-right: 0.3125rem;
    padding: 0.5rem;
    border-radius: 5px;
    background: #d9d9d9a8;
}

.chat-history-elements {
    height: calc(100% - 175px);
    overflow: auto;
}

.chat-history-element {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    background-color: rgba(255, 255, 255, 0.05);
    /* margin: 0.625rem 0; */
    padding: 0.625rem 0.625rem;
    border-radius: 0.3125rem;
    background-color: transparent;
    text-overflow: ellipsis;
    cursor: pointer;
}

.chat-history-element:hover {
    background-color: rgba(255, 255, 255, 0.05);
    cursor: pointer;
}



/* right panel */

:root {
    --primary-color: #ee5a43;
    --secondary-color: #7209b7;
    --background-color: #121212;
    --card-background: #1e1e1e;
    --text-color: #e0e0e0;
    --border-color: #333333;
    --tab-inactive: #2a2a2a;
    --tab-hover: #333333;
    --success-color: #2ecc71;
    --danger-color: #e74c3c;
    --neutral-color: #95a5a6;
}

.right-side-panel {
    width: 45vw;
    height: calc(100vh - 30px);
    background-color: rgba(255, 255, 255, 0.03);
    position: fixed;
    top: 0.9375rem;

    border-radius: 1.25rem;
    padding: 1.5rem;
    backdrop-filter: blur(20px);
    padding-top: 1.875rem;

    right: calc(-45vw - 100px);
    transition: right 0.3s ease, filter 0.3s ease;
    filter: blur(0px);
    box-shadow: 0 0 0.9375rem rgba(0, 0, 0, 0.2);
    z-index: 4;
    /* background: url(../../mui_assets/images/gredientBackground.png); */
    background-position: right;
    background-size: cover;
    border: 1px solid rgb(184, 184, 184);
}

.header-values {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dashboard-reload {
    position: absolute;
    right: 0.625rem;
    top: 0.625rem;
    border: none;
    border-radius: 50%;
    background-color: transparent;
    color: white;
}

.dashboard-loader {
    position: absolute;
    left: 50%;
    bottom: 50%;
    width: 3.125rem;
    height: auto;
    display: block;
}

#total_pnl,
#total_balance {
    font-weight: 700;
    font-weight: 1.0625rem;
}


.right-button-contaier {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    gap: 2rem;
    z-index: 4;
}

.right-side-panel.right-panel-active {
    right: 0.9375rem;
}

.right-panel-reveal-btn {

    color: grey;
    padding: 0.5rem !important;
    /* padding-right: 3rem; */
    cursor: pointer;
    z-index: 3;
    background: #d9d9d938 !important;
    border-radius: 5px;
}

.right-panel-reveal-btn>i {
    font-size: 1.0rem;
    border-radius: 5px;
    color: white;
}

.right-panel-reveal-btn:hover {
    color: rgb(255, 255, 255);
}

#right-panel-toggle {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    color: white;
    background-color: #d9d9d963;
    backdrop-filter: blur(10px);
    border: 0.0625rem solid rgb(57, 57, 57);

    position: absolute;
    left: -15px;
    top: 50%;
    transform: translate(-50%, 0);

    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;

}


#right-panel-toggle:hover {
    color: white;
}


.tabs {
    display: flex;
    background-color: #d9d9d926;
    border-bottom: 0.0625rem solid var(--border-color);
    position: relative;
    padding: 0.5rem;
    border-radius: 20px;
}

.tab {
    padding: 0.75rem 1.25rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    position: relative;
    z-index: 1;
    color: #a0a0a0;
    flex: 1;
    text-align: center;
    font-size: 0.8125rem;
}

.tab:hover {
    background-color: var(--tab-hover);
    color: rgb(226 148 31);
    border-radius: 20px;
}

.tab.active {
    color: rgb(226 148 31);
    /* border-bottom: 0.1875rem solid var(--primary-color); */
    background-color: white;
    border-radius: 20px;
}

h2 {
    font-size: 1.0rem;
    margin-bottom: 0.9375rem;
}

.tab-content {
    display: none;
    padding: 1.25rem;
    animation: fadeIn 0.5s ease;
    height: calc(100% - 55px);
    overflow-y: auto;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    color: white
}

.tab-content.active {
    display: block;
}

.tab-content h2 {
    color: rgb(255, 255, 255);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

table {
    width: 100%;
    border-collapse: collapse;
    /* margin-top: 0.625rem; */
    box-shadow: 0 0.0625rem 0.1875rem rgba(0, 0, 0, 0.1);
    /* border-radius: 20px; */
    overflow: hidden;
}

th,
td {
    padding: 0.625rem 0.75rem;
    text-align: left;
    border-bottom: 0.0625rem solid var(--border-color);
    font-size: 0.8125rem;
}

th {
    /* background-color: #ffffff; */
    /* font-weight: 600;
    color: #000000; */
}

td {
    /* background-color: #e7e7e7;
    font-weight: 600;
    color: #000000; */
}

tr:hover {
    /* background-color: #2c2c2c; */
}

.status {
    display: inline-block;
    padding: 0.125rem 0.375rem;
    border-radius: 0.75rem;
    font-size: 0.6875rem;
    font-weight: 500;
}

.status-active {
    background-color: rgba(46, 204, 113, 0.1);
    color: var(--success-color);
}

.status-pending {
    background-color: rgba(241, 196, 15, 0.1);
    color: #f39c12;
}

.status-closed {
    background-color: rgba(231, 76, 60, 0.1);
    color: var(--danger-color);
}

.profit {
    color: var(--success-color);
    font-weight: 500;
}

.loss {
    color: var(--danger-color);
    font-weight: 500;
}

.empty-state {
    text-align: center;
    padding: 2.5rem 1.25rem;
    color: #666;
}

.empty-state p {
    margin-bottom: 0.9375rem;
}

.btn {
    display: inline-block;
    padding: 0.3125rem 0.75rem;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 0.25rem;
    cursor: pointer;
    font-weight: 500;
    transition: background-color 0.3s;
    font-size: 0.75rem;
}

.btn:hover {
    background-color: #d97232;
}

.edit-strategy-symbol,
.edit-strategy-quantity,
.edit-strategy-quantity-type,
.edit-strategy-order-count {
    width: 6.25rem;
}

.edit-strategy-exchange {
    width: 8.125rem;
}

.strategies-table input,
.strategies-table select {
    background: transparent;
    border: 0.0625rem solid grey;
    padding: 0.3125rem 0.625rem;
    color: white;
    border-radius: 0.3125rem;
    pointer-events: all;

    -webkit-appearance: menulist-button;
    -moz-appearance: menulist-button;
    appearance: menulist-button;
}


.strategies-table .edit-strategy-disabled input,
.strategies-table .edit-strategy-disabled select {
    border: 0.0625rem solid rgba(128, 128, 128, 0);
    pointer-events: none;

    -webkit-appearance: none;
    /* Chrome, Safari, Opera */
    -moz-appearance: none;
    /* Firefox */
    appearance: none;
}

.actions-icon-container {
    width: 4.375rem;
    font-size: 0.875rem;
}

.actions-icon-container>i {
    margin: 0 0.625rem;
    color: grey;
    cursor: pointer;
}

.actions-icon-container>i:hover {
    color: white;
}

/* footer */

footer {
    height: 1.5625rem;
    position: fixed;
    bottom: 0.0rem;
    left: 50%;
    transform: translate(-50%, 0);
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    /* backdrop-filter: blur(6px); */
    z-index: 3;
}

#powered_by {
    background-color: transparent;
    font-size: 10px;
    color: grey;
    display: none;
    align-items: center;
    margin-bottom: 10px;
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translate(-50%, 0%);
}

#powered_by > a{
    height: 15px;
}

#powered_by > a img{
    height: 100%;
    margin-left: 4px;
}

/* scrollbar */

*::-webkit-scrollbar {
    width: 0.1875rem;
}

*::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.151);
    border-radius: 0.625rem;
}

*::-webkit-scrollbar-thumb {
    background: #009E82b3;
    border-radius: 0.625rem;
    border: 0.0625rem solid #009E82b3
}

*::-webkit-scrollbar-thumb:hover {
    background: #009E82b3;
    border: 0.0625rem solid #009E82b3;
}

/* hide scrolbar */

.hide-scrollbar {
    /* Hide scrollbar for Chrome, Safari and Opera */
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

.hide-scrollbar::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari, Opera */
}

/* loaders */

.loader {
    width: 0.9375rem;
    height: 0.9375rem;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    opacity: 1;
}

.loader-ring {
    width: 100%;
    height: 100%;
    border: 0.125rem solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    position: absolute;
}

.loader-ring-fill {
    width: 100%;
    height: 100%;
    border: 0.125rem solid transparent;
    border-top-color: #ffffff;
    border-radius: 50%;
    position: absolute;
    animation: rotate 1.5s cubic-bezier(0.5, 0, 0.5, 1) infinite;
}

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

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


/* custom switch code */

.sw-switch-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
}

.sw-switch-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    justify-content: center;
}

/* Hide the default checkbox */
.sw-switch {
    position: relative;
    display: inline-block;
    width: 1.875rem;
    /* Even smaller switch width */
    height: 1.0rem;
    /* Even smaller switch height */
}

.sw-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

/* The slider */
.sw-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #444;
    transition: .4s;
    border-radius: 1.375rem;
}

.sw-slider:before {
    position: absolute;
    content: "";
    height: 0.75rem;
    /* Even smaller knob */
    width: 0.75rem;
    /* Even smaller knob */
    left: 0.125rem;
    /* Adjusted position */
    bottom: 0.125rem;
    /* Adjusted position */
    background-color: #ddd;
    transition: .4s;
    border-radius: 50%;
}

input:checked+.sw-slider {
    background-color: orangered;
}

input:focus+.sw-slider {
    box-shadow: 0 0 0.1875rem orangered;
}

input:checked+.sw-slider:before {
    transform: translateX(14px);
    /* Adjusted translation distance for smaller switch */
}

/* Different colored switches - all now orangered for consistency */
input.sw-green:checked+.sw-slider {
    background-color: orangered;
}

input.sw-red:checked+.sw-slider {
    background-color: orangered;
}

/* Status text */
.sw-status {
    font-weight: bold;
    min-width: 3.125rem;
}

/* Switch labels */
.sw-switch-label {
    font-size: 0.875rem;
}

/* animations */

.card-line-loading-animation {
    width: 20%;
    height: 0.1875rem;
    background: linear-gradient(90deg,
            transparent,
            rgb(226 148 31),
            transparent);
    position: absolute;
    animation: line_loading_animation 1s infinite ease-out;
    top: 0;
    left: 0;
}

@keyframes line_loading_animation {
    0% {
        left: 0%;
    }

    100% {
        left: 100%;
    }
}


@media (orientation: portrait) {
    .ai-loader {
        left: 1.25rem;
    }

    .right-side-panel {
        width: 90vw;
        right: calc(-90vw - 100px);
        z-index: 3;
    }

    #left-side-panel-toggle-btn {
        display: block;
    }
}


.dashboard {
    background: #d9d9d913;
    color: white;
    padding: 2rem;
    border-radius: 1.5rem;
    max-width: 64rem;
    width: 100%;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(107, 114, 128, 0.5);
    backdrop-filter: blur(10px);
    margin-top: 2rem;
}

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

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

.section-title {
    font-size: 1.5rem;
    font-weight: bold;
    background: white;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.light-mode .section-title{
    background: black;
    background-clip: text;
}

.status-dot {
    width: 0.75rem;
    height: 0.75rem;
    background: #10b981;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.profit-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.profit-card {
    background: #d9d9d913;
    backdrop-filter: blur(8px);
    border-radius: 0.75rem;
    padding: 1.25rem;
    border: 1px solid rgba(107, 114, 128, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
    width: 23%
}


.card-label {
    font-size: 0.875rem;
    color: #9ca3af;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.card-value {
    font-size: 1.3rem;
    font-weight: bold;
    color: white;
    margin-bottom: 0.25rem;
}

.card-change {
    font-size: 0.75rem;
    color: #10b981;
    font-weight: 500;
}

.bottom-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.metric-card {
    border-radius: 0.75rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
}

.win-rate-card {
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.2), rgba(67, 56, 202, 0.1));
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.win-rate-card:hover {
    border-color: rgba(59, 130, 246, 0.5);
}

.trade-count-card {
    background: linear-gradient(135deg, rgba(88, 28, 135, 0.2), rgba(157, 23, 77, 0.1));
    border: 1px solid rgba(168, 85, 247, 0.3);
}

.trade-count-card:hover {
    border-color: rgba(168, 85, 247, 0.5);
}

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

.card-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: white;
}

.icon-container {
    padding: 0.5rem;
    border-radius: 0.5rem;
}

.blue-icon {
    background: rgba(59, 130, 246, 0.2);
    color: #60a5fa;
}

.purple-icon {
    background: rgba(168, 85, 247, 0.2);
    color: #a78bfa;
}

.icon {
    width: 1.25rem;
    height: 1.25rem;
}

.metrics-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.metric-item {
    background: rgba(31, 41, 55, 0.4);
    border-radius: 0.5rem;
    padding: 1rem;
    transition: background 0.3s ease;
}

.metric-label {
    font-size: 0.875rem;
    color: #9ca3af;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.metric-value {
    font-size: 1.5rem;
    font-weight: bold;
}

.win-rate .metric-value {
    color: #10b981;
}

.blue-value {
    color: white;
}

.purple-value {
    color: white;
}

.yellow-value {
    color: white;
}

.green-value {
    color: white;
}

.trend-icon {
    width: 0.75rem;
    height: 0.75rem;
}

.trend-up {
    color: #10b981;
}

.trend-down {
    color: #ef4444;
    transform: rotate(180deg);
}

.performance-indicator {
    margin-top: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.performance-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(6, 78, 59, 0.3);
    border: 1px solid rgba(21, 128, 61, 0.5);
    border-radius: 9999px;
    padding: 0.5rem 1.5rem;
}

.performance-dot {
    width: 0.5rem;
    height: 0.5rem;
    background: #10b981;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.performance-text {
    color: #6ee7b7;
    font-size: 0.875rem;
    font-weight: 500;
}


.tab-card-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}


.card {
    border-radius: 16px;
    padding: 1rem;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    width: 46%;
    border: 1px solid #e5e7eb;
}

.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 5px;
}

.title {
    font-size: 18px;
    font-weight: 600;
    color: #374151;
    display: flex;
    align-items: center;
    gap: 8px;
}

.chevron {
    width: 16px;
    height: 16px;
    color: #9ca3af;
}

.menu-icon {
    width: 20px;
    height: 20px;
    color: #9ca3af;
    cursor: pointer;
}

.stats {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 32px;
    display: flex;
    gap: 16px;
    align-items: center;
}

.stats-item {
    display: flex;
    align-items: center;
    gap: 4px;
}

.metrics-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
}

.metric {
    flex: 1;
}

.metric-label {
    font-size: 14px;
    color: #6b7280;
    display: flex;
    align-items: center;
    gap: 4px;
}

.loading-spinner {
    width: 16px;
    height: 16px;
    border: 2px solid #f3f4f6;
    border-top: 2px solid #ef4444;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

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

.metric-value {
    font-weight: 700;
}

.profit-rate {
    color: #059669;
}

.max-gain {
    color: #6b7280;
}

.change {
    font-size: 14px;
    margin-top: 4px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.change-up {
    color: #059669;
}

.change-down {
    color: #dc2626;
}

.change-neutral {
    color: #6b7280;
}

.arrow-up,
.arrow-down {
    width: 12px;
    height: 12px;
}

/* .bandwidth-section {
            margin-bottom: 24px;
        } */

.bandwidth-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.bandwidth-title {
    font-size: 24px;
    font-weight: 700;
    color: #1f2937;
}

.bandwidth-percentage {
    font-size: 18px;
    color: #6b7280;
    font-weight: 500;
}

.bandwidth-subtitle {
    font-size: 14px;
    color: #6b7280;
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 16px;
}

.cost-info {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    color: #6b7280;
}

.cost-value {
    color: #1f2937;
    font-weight: 600;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: #f3f4f6;
    border-radius: 4px;
    margin-bottom: 16px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(to right, #1e293b 0%, #1e293b 15%, #a855f7 15%, #c084fc 100%);
    border-radius: 4px;
}

.legend-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.legend {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 12px;
}

.legend-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
    gap: 10px;
    margin-bottom: 1rem;
}

.legend-label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #6b7280;
}

.legend-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.profit-dot {
    background: #1e293b;
}

.loss-dot {
    background: #a855f7;
}

.legend-value {
    color: #374151;
    font-weight: 500;
}

.total-row {
    font-size: 14px;
    color: #6b7280;
    padding-top: 8px;
    border-top: 1px solid #f3f4f6;
}

.help-icon {
    width: 14px;
    height: 14px;
    color: #9ca3af;
    cursor: help;
}

.info-icon {
    width: 14px;
    height: 14px;
    color: #6b7280;
}


.text-white {
    color: white !important
}

.text-off-white {
    color: #c2c3c5 !important
}

.trader-card {
    background: linear-gradient(135deg, rgb(12 12 12 / 20%), rgba(67, 56, 202, 0.1));
    width: 100%;
    margin-bottom: 1.5rem;
}




.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

.modal-content {
    /* background: url(../images/gredientBackgroundFlipped.png); */
    background-size: cover;
    margin: 10% auto;
    padding: 30px;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.close {
    color: #e2e8f0;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
}

.close:hover {
    color: #ffffff;
}

.modal h2 {
    color: #ffffff;
    margin-bottom: 20px;
    font-size: 24px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: #e6e6e6;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 500;
}

.light-mode .form-group label {
    color: #525252;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    font-size: 14px;
    box-sizing: border-box;
}

.light-mode .form-group input,
.light-mode .form-group select {
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.2);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-actions {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    margin-top: 30px;
}

.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s;
}

.btn-primary {
    width: 50%;
    background: #ffffff7e;
    backdrop-filter: blur(15px);
    color: rgb(0, 0, 0);
}

.btn-primary:hover {
    background: #2563eb;
}

.btn-secondary {
    width: 50%;
    border: 1px solid  #ffffff;
    background: transparent;
    color: #000000;
}

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


   .info-content {
            margin: 20px 0;
            color: white;
        }

        .info-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 12px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .info-row:last-child {
            border-bottom: none;
        }

        .info-key {
            color: #e2e8f0;
            font-weight: 500;
            font-size: 14px;
        }

        .info-value {
            color: #ffffff;
            font-size: 14px;
            font-weight: 600;
        }