/*!Font Import ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
@import url('https://fonts.googleapis.com/css2?family=Comfortaa:wght@300..700&display=swap');
body{
    font-family: "Comfortaa", sans-serif;
    background: #131313;
}

/*!Scrollbar ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
/* Width of the entire scrollbar */
::-webkit-scrollbar {
    width: 6px; /* Adjust the width as needed */
}
/* Optional: styling for the track (the area behind the thumb) */
::-webkit-scrollbar-track {
    background: transparent;
}
/* Styling the draggable part of the scrollbar */
::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(3px);
    border-radius: 25px;
    transition: background 0.3s ease;
}
/* Change the thumb style on hover */
::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.2);
}

/*! Bonus Stuff ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
.globalBreak{
    height: 25px;
}

.toLibraryDiv{
    width: 60%;
    height: 20px;
    margin: 0 auto;
    text-align: center;
    color: white;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(3px);
    border-radius: 25px;
    padding: 10px;
    padding-bottom: 30px;
    cursor: pointer;
    transition: background 0.3s ease, box-shadow 0.3s ease;
    .toLibraryText{
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    h4{
        margin: 0;
    }
    h5{
        margin: 0;
    }
}
@media (max-width: 1500px){
    .toLibraryDiv{
        width: 80%;
        h5{
            display: none;
        }
    }
}
.toLibraryDiv:hover{
    background: #ff174650;
    box-shadow: 0 0 10px #ff174650;
}

.tag-price-paid {
    font-size: 1.5em;
    color: #00ff98;
    background-color: #00804c70;
    width: fit-content;
    padding: 5px;
    border-radius: 8px;
    transform: rotateZ(-5deg);
    transition: all 0.3s ease;
}
.tag-price-free {
    font-size: 1.5em;
    color: #6c9fff;
    background-color: #36508070;
    width: fit-content;
    padding: 5px;
    border-radius: 8px;
    transform: rotateZ(-5deg);
    transition: all 0.3s ease;
}
.tag-price-soon {
    font-size: 1.5em;
    color: #ff1746;
    background-color: #800c2370;
    width: fit-content;
    padding: 5px;
    border-radius: 8px;
    transform: rotateZ(-5deg);
    transition: all 0.3s ease;
}

/*!Navbar ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
/*Responsiveness*/
@media (max-width: 600px) {
    .navbar-logo {
        display: none !important;
    }
}

/* Overall Navbar Container */
.navbar {
    position: fixed;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    /* width is auto so the container wraps its content */
    padding: 0 10px;
    z-index: 1000;
}
/* Logo Section */
.navbar-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(3px);
    width: 80px;
    height: 50px;
    border-radius: 25px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    
    @media (min-width: 600px) {
        margin-right: 100px;
    }
    @media (min-width: 800px) {
        margin-right: 300px;
    }
    @media (min-width: 1000px) {
        margin-right: 500px;
    }
    @media (min-width: 1200px) {
        margin-right: 700px;
    }
    @media (min-width: 1400px) {
        margin-right: 900px;
    }
}
.navbar-logo .logo {
    font-size: 1rem;
    font-weight: bold;
    color: #d1d1d1;
    text-align: center;
    img{
        height: 45px;
    }
    #logoImg1{
        opacity: 1;
        position: absolute;
        transition: opacity 0.3s ease-in-out;
    }
    #logoImg2{
        opacity: 0;
        transition: opacity 0.3s ease-in-out;
    }
}
.navbar-logo .logo:hover {
    #logoImg1{
        opacity: 0;
    }
    #logoImg2{
        opacity: 1;
    }
}
/* Links Section */
.navbar-links {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(3px);
    border-radius: 25px;
    padding: 0 20px;
    height: 50px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
/*
.navbar-links a {
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    margin: 0 15px;
    transition: color 0.3s ease, text-shadow 0.3s ease, transform 0.3s ease;
}
.navbar-links a:hover {
    color: #7b68ee;
    text-shadow: 0 0 10px #7b68ee, 0 0 20px #7b68ee;
    transform: scale(1.1);
}
*/
@media (min-width: 501px) {
    .navIcon{
        height: 40px;
        margin: 0 15px;
        opacity: 1;
        position: absolute;
        transition: all 0.3s ease;
    }
    .navIconS{
        height: 40px;
        margin: 0 15px;
        opacity: 0;
        transition: all 0.3s ease;
    }
}
@media (max-width: 500px) {
    .navIcon{
        height: 40px;
        margin: 0 5px;
        opacity: 1;
        position: absolute;
        transition: all 0.3s ease;
    }
    .navIconS{
        height: 40px;
        margin: 0 5px;
        opacity: 0;
        transition: all 0.3s ease;
    }
}
.navIcon:hover{
    transform: scale(1.1);
    opacity: 0;
}
.navbar-links a:hover .navIcon{
    opacity: 0;
}
.navbar-links a:hover .navIconS{
    transform: scale(1.1);
    opacity: 1;
    filter: drop-shadow(0 0 15px rgba(0, 0, 0));
}
.navActive{
    .navIcon{
        opacity: 0;
    }
    .navIconS{
        opacity: 1;
    }
}
/* Remove left margin from first link and right margin from last link */
.navbar-links a:first-child {
    margin-left: 0;
}
.navbar-links a:last-child {
    margin-right: 0;
}

/* Make each link position relative */
a.tooltipBottom {
    position: relative;
    display: inline-block;
}
/* Tooltip base styling */
a.tooltipBottom::after {
content: attr(data-tooltip);      /* Use the text from the data-tooltip attribute */
position: absolute;
top: 100%;                        /* Position below the link */
left: 50%;
transform: translateX(-50%) translateY(15px); /* Start slightly below */
color: #fff;
background: rgba(255, 255, 255, 0.1);
backdrop-filter: blur(3px);
padding: 4px 8px;
border-radius: 25px;
font-size: 12px;
white-space: nowrap;
opacity: 0;                       /* Initially hidden */
pointer-events: none;             /* Avoid interfering with hover */
transition: opacity 0.3s ease, transform 0.3s ease; /* Smooth fade and move */
}
/* Show the tooltip on hover */
a.tooltipBottom:hover::after {
opacity: 0.9;                     /* Fully visible */
transform: translateX(-50%) translateY(8px); /* Move into position */
}
a.tooltipTop {
    position: relative;
    display: inline-block;
}
a.tooltipTop::after {
    content: attr(data-tooltip);      /* Use the text from the data-tooltip attribute */
    position: absolute;
    top: 100%;                        /* Position below the link */
    left: 50%;
    transform: translateX(-50%) translateY(-92px); /* Start slightly below */
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(3px);
    padding: 4px 8px;
    border-radius: 25px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;                       /* Initially hidden */
    pointer-events: none;             /* Avoid interfering with hover */
    transition: opacity 0.3s ease, transform 0.3s ease; /* Smooth fade and move */
    }
a.tooltipTop:hover::after {
    opacity: 0.9;                     /* Fully visible */
    transform: translateX(-50%) translateY(-72px); /* Move into position */
    }

/*!FOOTER ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
.footer {
    width: 60%;
    margin: 0 auto;
    margin-bottom: 25px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(3px);
    border-radius: 25px;
    color: #fff;
    text-align: center;
    padding: 10px;
    font-size: 14px;
}
@media (max-width: 1000px) {
    .footer {
        width: 70%;
    }
}
@media (max-width: 1500px) {
    .footer {
        width: 80%;
    }
}
.footer-socials {
    margin-bottom: 10px;
    margin-top: 10px;
    img{
        height: 50px;
    }
}
.socIcon{
    height: 40px;
    margin: 0 20px;
    opacity: 1;
    position: absolute;
    transition: all 0.3s ease;
}
.socIconS{
    height: 40px;
    margin: 0 20px;
    opacity: 0;
    transition: all 0.3s ease;
}
.socIcon:hover{
    transform: scale(1.1);
    opacity: 0;
}
.footer-socials a:hover .socIcon{
    opacity: 0;
}
.footer-socials a:hover .socIconS{
    transform: scale(1.1);
    opacity: 1;
    filter: drop-shadow(0 0 15px rgba(0, 0, 0));
}

/*! ADS ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
.customAdHorizontal{
    overflow: hidden;
    width: 60%;
    height: 75px;
    margin: 0 auto;
    text-align: center;
    color: white;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(3px);
    border-radius: 25px;
    padding: 10px;
    padding-bottom: 30px;
}
@media (max-width: 1000px){
    .customAdHorizontal{
        width: 70%;
    }
}
@media (max-width: 1500px){
    .customAdHorizontal{
        width: 80%;
    }
}
.customAdHorizontal a{
    text-decoration: none;
    color: white;
    font-size: 30px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}
.customAdHorizontal a:hover{
    color: #7b68ee;
    text-shadow: 0 0 10px #7b68ee, 0 0 20px #7b68ee;
}
.customAdHorizontal img{
    height: 114px;
    transform: translateY(4px);
}
.adTag{
    z-index: 99;
    position: absolute;
    bottom: 5px;
    right: 20px;
    margin: 0;
    background-color: rgba(255, 255, 255, 0.75);
    color: black;
    padding: 2px 10px 2px 10px;
    border-radius: 50px;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}
.adTag:hover{
    opacity: 1;
}

/*! AI CHATBOT ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
@import url('https://fonts.googleapis.com/css2?family=Comfortaa:wght@300..700&display=swap');

:root {
    --theme-orange: #e78970;
    --theme-orange-bg: rgba(231, 137, 112, 0.2);
    --theme-purple: #7b68ee;
    --theme-purple-bg: rgba(123, 104, 238, 0.2);
    --theme-action-red: #ff1746;
    --theme-action-red-hover: #d71039;
    --theme-text-primary: #e0e0e0;
    --theme-text-secondary: #b0b0b0;
    --theme-background-main: #131313;
    --theme-background-container: rgba(30, 30, 30, 0.9);
    --theme-border-light: rgba(255, 255, 255, 0.1);
    --theme-border-medium: rgba(255, 255, 255, 0.2);
    --theme-input-background: rgba(0, 0, 0, 0.3);
    --theme-success-green: #00D9A4;
    --theme-success-green-hover: #00c08e;
    --theme-neutral-grey: #6c757d;
    --theme-neutral-grey-hover: #5a6268;
    --theme-warning-bg: rgba(255, 180, 0, 0.1);
    --theme-warning-border: rgba(255, 180, 0, 0.25);
    --theme-warning-text: #ffd166;
    --theme-warning-text-strong: #ffc107;
    --theme-info-blue: #6c9fff;
    --theme-info-blue-bg: rgba(108, 159, 255, 0.15);
    --theme-info-blue-border: rgba(108, 159, 255, 0.3);

    --indicator-color-5: #00D9A4;
    --indicator-color-4: #52d9a0;
    --indicator-color-3: #a3d99c;
    --indicator-color-2: #e7c687;
    --indicator-color-1: #e78970;
    --indicator-color-0: #ff1746;
}

body {
    font-family: "Comfortaa", sans-serif;
    background: var(--theme-background-main);
    color: var(--theme-text-primary);
    margin: 0;
    min-height: 100vh;
    box-sizing: border-box;
    transition: background-color 0.3s ease;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb {
    background: var(--theme-border-light);
    backdrop-filter: blur(3px);
    border-radius: 25px;
    transition: background 0.3s ease;
}
::-webkit-scrollbar-thumb:hover { background: var(--theme-border-medium); }

#open-bot-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    padding: 0;
}
#open-bot-button:hover {
    background-color: var(--theme-action-red);
    transform: scale(1.1);
    box-shadow: 0 0 15px var(--theme-action-red);
}
#open-bot-button svg {
    width: 30px; /* Adjusted to better fit the new icon */
    height: 30px; /* Adjusted to better fit the new icon */
    fill: white; /* Set fill color for the icon */
}
/* Style for the path inside the new SVG if needed */
#open-bot-button svg .cls-1 {
     fill: white; /* Ensures the icon paths are white */
}


.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-out, visibility 0s 0.3s linear;
    z-index: 1000;
    padding: 20px;
    box-sizing: border-box;
}
.modal-overlay.visible {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease-out, visibility 0s 0s linear;
}

.modal-content {
    position: relative;
    width: 90vw;
    height: 90vh;
    max-width: 1800px;
    padding: 0;
    border-radius: 25px;
    transform: scale(0.95) translateY(20px);
    transition: transform 0.3s ease-out;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}
.modal-overlay.visible .modal-content {
    transform: scale(1) translateY(0);
}

.desktop-layout-wrapper {
    display: flex;
    flex-direction: column;
    gap: 15px;
    background: var(--theme-background-container);
    border-radius: 25px;
    padding: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
    height: 100%;
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
    position: relative;
}

#modal-close-button-top {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.1);
    color: var(--theme-text-primary);
    border: none;
    font-size: 22px;
    line-height: 32px;
    text-align: center;
    cursor: pointer;
    z-index: 1010;
    transition: background-color 0.3s ease, transform 0.3s ease, color 0.3s ease;
}
#modal-close-button-top:hover {
    background-color: var(--theme-action-red);
    color: white;
    transform: scale(1.1) rotate(90deg);
}

.content-box-section {
    transition: all 0.3s ease-out;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: 15px;
    padding: 15px;
    flex-grow: 1;
    box-sizing: border-box;
}

.chat-container-wrapper, .api-key-section-wrapper {
    width: 100%;
    height: 100%;
    display: none;
    flex-direction: column;
}
.chat-container-wrapper.visible, .api-key-section-wrapper.visible {
    display: flex;
}

.content-box-section h1, .content-box-section h2 {
    color: #ffffff;
    font-weight: 500;
    text-align: center;
    margin: 0 0 15px 0;
    padding-right: 30px;
}
.content-box-section h1 { font-size: 2em; }
.content-box-section h2 { font-size: 1.5em; }

.chat-container {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.chat-header {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--theme-border-light);
}
.chat-header p {
    color: var(--theme-text-secondary);
    font-size: 0.9em;
    margin: 0;
    text-align: center;
}

.chat-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    background-color: rgba(0, 0, 0, 0.25);
    padding: 10px 15px;
    border-radius: 12px;
}
.chat-controls > div:last-child {
    display: flex;
    gap: 10px;
}
#message-limit-indicator {
    display: flex;
    gap: 5px;
}
.indicator-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--indicator-color-5);
    transition: background-color 0.3s ease, opacity 0.3s ease;
    box-shadow: 0 1px 3px rgba(0,0,0,0.3);
}
#reset-chat-button, #toggle-view-button {
    padding: 6px 12px;
    font-size: 0.8em;
    background-color: var(--theme-neutral-grey);
}
#reset-chat-button:hover, #toggle-view-button:hover {
    background-color: var(--theme-neutral-grey-hover);
}

#chat-output {
    flex-grow: 1;
    overflow-y: auto;
    padding-right: 10px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.message {
    padding: 12px 18px;
    border-radius: 18px;
    max-width: 80%;
    word-wrap: break-word;
    line-height: 1.6;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    opacity: 0;
    transform: scale(0.95) translateY(10px);
    animation: messageAppear 0.4s ease-out forwards;
}
@keyframes messageAppear {
    to { opacity: 1; transform: scale(1) translateY(0); }
}

.user-message {
    background: var(--theme-orange-bg); color: var(--theme-orange);
    align-self: flex-end; border-bottom-right-radius: 5px;
}
.bot-message {
    background: var(--theme-purple-bg); color: var(--theme-purple);
    align-self: flex-start; border-bottom-left-radius: 5px;
}
.bot-message a {
    color: var(--theme-info-blue);
    text-decoration: underline;
    transition: color 0.3s ease;
}
.bot-message a:hover {
    color: var(--theme-action-red);
    text-decoration: none;
}
.bot-message strong { font-weight: bold; }
.bot-message em { font-style: italic; }
.bot-message.loading::after {
    content: '▋'; display: inline-block; animation: blink 1s infinite;
    margin-left: 8px; font-weight: bold;
}
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }

.error-message {
    background-color: rgba(255, 23, 70, 0.25); color: #ff8a9f;
    align-self: flex-start; border-bottom-left-radius: 5px; font-weight: 500;
}

.chat-input-area {
    display: flex;
    gap: 8px;
    border-top: 1px solid var(--theme-border-light);
    padding-top: 15px;
    align-items: center;
}
#user-input {
    flex-grow: 1;
    flex-shrink: 1;
    min-width: 50px;
    padding: 12px 15px; border: 1px solid var(--theme-border-medium);
    background-color: var(--theme-input-background); color: var(--theme-text-primary);
    border-radius: 10px; font-size: 1em; font-family: "Comfortaa", sans-serif;
    outline: none; transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
#user-input:focus { border-color: var(--theme-action-red); box-shadow: 0 0 8px rgba(255, 23, 70, 0.4); }
#user-input::placeholder { color: var(--theme-text-secondary); }

.styled-button {
    padding: 12px 22px;
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 500;
    font-size: 1em;
    font-family: "Comfortaa", sans-serif;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}
#ask-button {
    flex-shrink: 0;
    background-color: var(--theme-action-red);
}
#ask-button:hover:not(:disabled) { background-color: var(--theme-action-red-hover); transform: scale(1.03); box-shadow: 0 0 12px var(--theme-action-red-hover); }
#ask-button:disabled { background-color: var(--theme-border-light); color: #777; cursor: not-allowed; transform: scale(1); box-shadow: none; }

.api-key-section {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow-y: auto;
    justify-content: center;
}
.api-key-section label {
    display: block; margin-bottom: 8px; font-size: 0.9em; color: var(--theme-text-secondary);
}
.api-key-input-container { display: flex; gap: 10px; margin-bottom: 15px; }
#api-key-input {
    flex-grow: 1; padding: 10px 12px; border: 1px solid var(--theme-border-medium);
    background-color: var(--theme-input-background); color: var(--theme-text-primary);
    border-radius: 10px; font-size: 0.9em; font-family: "Comfortaa", sans-serif;
    outline: none; transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
#api-key-input:focus { border-color: var(--theme-success-green); box-shadow: 0 0 8px rgba(0, 217, 164, 0.4); }

.api-key-buttons button {
    padding: 10px 18px;
    font-size: 0.9em;
    margin-right: 10px;
}
#save-key-button { background-color: var(--theme-success-green); }
#save-key-button:hover { background-color: var(--theme-success-green-hover); box-shadow: 0 0 10px rgba(0, 217, 164, 0.5); transform: scale(1.03); }
#clear-key-button { background-color: var(--theme-neutral-grey); }
#clear-key-button:hover { background-color: var(--theme-neutral-grey-hover); box-shadow: 0 0 10px rgba(108, 117, 125, 0.5); transform: scale(1.03); }

.api-key-info-box {
    margin-top: 20px;
    padding: 12px 15px;
    background-color: var(--theme-info-blue-bg);
    border: 1px solid var(--theme-info-blue-border);
    color: var(--theme-info-blue);
    border-radius: 10px;
    text-align: center;
    font-size: 0.9em;
    line-height: 1.5;
}
.api-key-info-box a {
    color: var(--theme-info-blue);
    font-weight: bold;
    text-decoration: none;
}
.api-key-info-box a:hover {
    text-decoration: underline;
}

.api-key-warning {
    margin-top: 15px; padding: 12px 15px; background-color: var(--theme-warning-bg);
    border: 1px solid var(--theme-warning-border); color: var(--theme-warning-text);
    border-radius: 10px; text-align: center; font-size: 0.85em; line-height: 1.5;
}
.api-key-warning strong { color: var(--theme-warning-text-strong); }

.modal-status {
    padding: 10px 15px;
    border-radius: 8px;
    margin-top: 15px;
    text-align: center;
    font-size: 0.9em;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
}
.modal-status.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
.modal-status.success {
    background-color: var(--theme-success-green-hover);
    color: white;
    border: 1px solid var(--theme-success-green);
}
.modal-status.error {
    background-color: var(--theme-action-red-hover);
    color: white;
    border: 1px solid var(--theme-action-red);
}
 .modal-status.info {
    background-color: var(--theme-info-blue-bg);
    color: var(--theme-info-blue);
    border: 1px solid var(--theme-info-blue-border);
}