/* 
 * Chatbot ChatGPT for WordPress - Stylesheet
 * 
 * This CSS file contains styles for the Chatbot ChatGPT plugin.
 * It includes styles for the chatbot interface, messages, and other UI elements.
 * 
 * Customize these styles to match your website's design.
 *
 */



/* Message counter*/



 
div#message-count-container {
    position: relative;
    top: -6px;
    padding-left: 10px;
    height: 36px;
    background: white;
    width: 205px;
    border-radius: 30px;
    left: 5px;
}

p.counter_text {
    top: 6px;
    position: relative;
    color: #85B439;
    font-weight: 500;
}

span#message-count {
    color: black;
    font-weight: 600;
}

/*Datenschutz*/
.overlay {
    position: relative;
    height: 102%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 999;
    display: flex;
    justify-content: center;
    flex-direction: column;
    top: -79px;
}

.popup {
    background: white;
    padding: 20px;
    border-radius: 5px;
    text-align: center;
}

button:disabled {
    background: #cccccc;
    cursor: not-allowed;
}

.policy_private {
    color: #85B439 !important;

}

button#akzeptieren-btn {
    background-image: linear-gradient(#E5A22B, #e1701a);
    border: solid;
    border-color: #eea34a;
    border-width: 1px;
    border-radius: 2px;
    color: white;
    padding: 7px 20px;
    text-decoration: none;
    font-weight: normal;
    font-size: 16px;
    box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 15px 0 rgba(0, 0, 0, 0.0);
    cursor: pointer;
}


/*Datenschutz wideruft & Ki info*/
.popup_info {
    position: relative;
    top: 60px;
    padding: 15px;
    background-color: #333333;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: -59px;
    margin-bottom: 60px;
}
    .popup-text {
        font-size: 11px;
        color: white;
    }

    .popup-close {
        background: none;
        border: none;
        font-size: 16px;
        color: lightgrey;
        cursor: pointer;
    }

    .popup-close:hover {
        color: #000;
    }

    .show-popup {
        position: absolute;
        top: 57px;
        right: 25px;
        background: none;
        border: none;
        font-size: 24px;
        cursor: pointer;
        display: none;
        z-index: 999;
        width: 5%;
    }

    .show-popup:hover {
        color: #aaa;

    }


/*Datenschutz_end*/


 input#chatbot-chatgpt-message {
    font-size: 13px;
    color:black !important;
}



 .test {
    display: flex;
    align-items: center;
    background-color: white;
    padding: 10px;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    color: white;
    height: 70px;
    margin-bottom: -10px;
}

/* Reverse Dropdown*/
.chatbot-chatgpt-prompt {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: sticky;
    background-color: white;
    min-width: 200px;
    overflow: auto;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 999;
    top: 395px;
    left: 122px;
    animation: fadeIn 0.3s;
    border-radius: 8px;
    border: 1px solid grey;
}

.dropdown-content button {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    width: 100%;
    border: none;
    background: none;
    cursor: pointer;
    outline: none; /* Remove outline on click */
    transition: background-color 0.3s, padding-left 0.3s;
}


.dropdown-content button:hover {
    background-color: #f1f1f1;
    padding-left: 24px;
}

.show {
    display: block;
}


@keyframes fadeIn {
    from {opacity: 0;}
    to {opacity: 1;}
}

.dropdown-content button:not(:last-child) {
    border-bottom: 1px solid #ddd;
}
/* ---------END---------- */

/* TOOLTIP HOVER */
#chatbot-chatgpt-erase-btn .tooltiptext {
    font: inherit;
    font-size: 13px !important;
    font-family: inherit;
    visibility: hidden;
    padding-left: 6px; 
    padding-right: 6px;
    background-color: rgb(169 164 164 / 50%);
    color: #000;
    text-align: center;
    border-radius: 6px;
    position: absolute;
    z-index: 1;
    transition: visibility 0s linear 0.01s; /* Delay tooltip visibility change */
    left: calc(64% - 115px);
}

#chatbot-chatgpt-erase-btn:hover .tooltiptext {
    visibility: visible;
    transition-delay: 0s; /* Remove delay on hover */
}

#chatbot-chatgpt-text-to-speech-btn .tooltiptext {
    font: inherit;
    font-size: 13px !important;
    font-family: inherit;
    visibility: hidden;
    padding-left: 6px; 
    padding-right: 6px;
    background-color: rgb(169 164 164 / 50%);
    color: #000;
    text-align: center;
    border-radius: 6px;
    position: absolute;
    z-index: 1;
    transition: visibility 0s linear 0.1s; /* Delay tooltip visibility change */
    left: calc(50% - 105px);
}
  
#chatbot-chatgpt-text-to-speech-btn:hover .tooltiptext {
    visibility: visible;
    transition-delay: 0s; /* Remove delay on hover */
}
/* ---------END---------- */

audio::-webkit-media-controls-current-time-display,
audio::-webkit-media-controls-time-remaining-display{
    display: none;
}

audio{
    display: none;
    /* border: none;
    border-radius: 1px;
    padding: 1px 1px;
    margin-left: 1px;
    width: 221px; 
    display: block;
    margin: 0 auto;  */
}
/* Stil für den benutzerdefinierten Play-Button */
/* .play-button {
    cursor: pointer;
    background-color: #008CBA;
    border: none;
    color: white;
    padding: 10px 20px;
    text-align: center;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    transition-duration: 0.4s;
    border-radius: 5px;
} */

.dashicons-controls-volumeon:hover{
    color: #85B439;
}

.Loading{
    display: flex;         /* Use flexbox for easy alignment */
    align-items: center;   /* Align items vertically in the center */
    justify-content: center; 
    font-weight: bold;
    font: inherit;
    font-size: 13px !important;
    font-family: inherit;
    color: #313131;
    line-height: 23px;
}

.Loading svg {
    margin-left: 5px;      /* Optional: Adds some spacing between text and SVG */
    vertical-align: middle; /* Aligns the SVG vertically to the middle of the text */
}

#chatbot-chatgpt-text-to-speech-btn {
    border: none;
}

/* chat custom */
#chatbot-chatgpt-text_to_speech{
    /* background-color: #f1f1f1; */
    color: #fff;
    border: none;
    border-radius: 3px;
    padding: -49px -85px;
    margin-left: 1px;
    cursor: pointer;
    margin-bottom: 0rem;
    color: #85B439;
    height: 3rem;
    /* margin-top: 0rem; */
}

/* Upload */
#chatbot-chatgpt-upload-file {
    background-color: white !important;
    border: none;
    border-radius: 1px;
    padding: 1px 1px;
    margin-left: 1px;
    cursor: pointer;
    display: none;
}

#chatbot-chatgpt-upload-file:hover {
    background-color: #dcdcdc !important;    
}

/* Bin/TRASH */
#chatbot-chatgpt-erase-btn {
    background-color: white !important;
    border: none;
    cursor: pointer;
    margin-right: 3px;
}

#chatbot-chatgpt-erase-btn:hover {
    background-color: #dcdcdc !important;    
}

/* Styles for Avatarius */
.Avatarius_Normal, .Avatarius_Winken, .Avatarius_Happy, .Avatarius_Talk {
    position: fixed;
    left: 10;
    display: none;
    margin-top: 17rem;
    width: 18rem;
    margin-left: -21rem;
    transition: opacity 5s ease-in-out;

}

.Avatarius {
    display: none;
    position: relative;
    top: -68rem;
    left: 25px;
    width: 200px;
    height: 200px;
    margin-left: -200px;
    transition: opacity 5sease-in-out;
}

.Avatarius_Normal {
    width: 174px;
    margin-left: -23px;
    transition: opacity 5s ease-in-out;
    margin-top: 800px;
}

.Avatarius_Talk {
    width: 175px;
    margin-left: -25px;
    transition: opacity 5s ease-in-out;
    margin-top: 800px;
}


.Avatarius_Winken {
    display: block;
    width: 290px;
    margin-left: -80px;
    transition: opacity 5s ease-in-out;
    margin-top: 800px;

}

.Avatarius_Happy {
    width: 295px;
    margin-left: -85px;
    transition: opacity 5s ease-in-out;
    margin-top: 793px;
}
/* -------------Help button--------------- */

.square-button-support {
    background-color: white;
    color: #85B439;
    font-size: 15px !important;
    border: none;
    cursor: pointer;
    fill: white;
    display: inline-block;
    padding: 5px 10px;
    border-radius: 12px;
    overflow-wrap: anywhere;
    font: inherit;
    font-family: inherit;
    position: relative;
    top: 30px;
    float: right;
    left: -10px;
    z-index: 999;
}

.square-button-senden2 {
    padding: 8px 17px;
    border-radius: 10%;
    float: right;
    margin-top: 12px;
    width: 3rem;
}

.square-button2, .square-button-senden2 {
    background-color: #85B439;
    color: #fff;
    font-size: 15px !important;
    border: none;
    cursor: pointer;
    fill: white;
    height: 30px;
}
/* -------------END--------------- */

.chat-image-container2 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.5;
    z-index: -1;
}

.chat-image2 {
    display: block;
    margin: auto;
    opacity: 0.5;
    max-width: 100%;
    height: auto;
}

#chatbot-chatgpt-head {
    position: fixed;
    bottom: 0px;
    right: 0px;
    width: 318px;
    height: 532px;
    background-color: #f1f1f1;
    border: 3px solid #777777;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    z-index: 100;
    margin-bottom: 40px;
}

#profile-pic2 {
    width: 40px;
    height: 40px; /* Größe des Profilbildes */
    border-radius: 50%; /* Rundes Profilbild */
    margin-right: 10px; /* Abstand zum Text */
}
#chat-header {
    display: flex;
    align-items: center;
    background-color: #85B439; /* Hintergrundfarbe der Kopfzeile */
    padding: 10px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    color: white; /* Schriftfarbe */
}
/* -------------END--------------- */


/* Avatar Settings - Ver 1.5.0 */
.chatbot-avatar {
    width: 60px;
    height: 60px;
}

#chatgpt-open-btn.avatar-icon {
    padding: 5px;
}

/* Padding for Avatars - Ver 1.5.0 */
#chatgpt-open-btn.dashicon {
    padding: 25px;
}

/* Avatar Settings - Ver 1.5.0 */
.chatbot-bubble {
    background-color: #f0f0f0;
    color: #000;
    border-radius: 5px;
    padding: 10px;
    margin: 10px;
    margin-top: -15px;
    font-size: 14px !important;
    min-width: 150px;
    max-width: 300px;
    word-wrap: break-word;
    position: absolute;
    right: 100px;
    z-index: 100;
    white-space: normal;
    display: inline-block;
    font-family: sans-serif;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}

/* Set font family to sans-serif for all text within the plugin */
.chatbot-container * {
    font-family: sans-serif;
}

/* CSS for the chatbot interface */

.chatbot-common {
    position: fixed;
    bottom: 10px; /* Einheitlicher bottom-Wert */
    background-color: #f1f1f1;
    display: flex;
    flex-direction: column;
    z-index: 100;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

#chatbot-chatgpt-head {
    width: 350px;
    height: 650px;
    border: 3px solid #777777;
    border-radius: 10px;
    right: 0px;
}


#chatbot-chatgpt {
    border: 1px solid #ccc;
    border-radius: 5px;
    right: 10px;
    margin-bottom: 50px;
}


#chatbot-chatgpt.chat-open {
    width: 303px; /* Neue Breite beim Öffnen */
    height: 516px; /* Neue Höhe beim Öffnen */
    border-radius: 11px; /* Angepasster Randradius */
    bottom: 30px; /* Neue Position vom unteren Rand */
}

/* Support for a floating version of the chatbot - Ver 1.7.1 */
.floating-style {
    width: 1px;
    height: 1px;
    overflow: hidden;
    position: fixed;
    bottom: 10px;
    right: 10px;
    background-color: #f1f1f1;
    border: 1px solid #ccc;
    border-radius: 5px;
  	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    z-index: 100;
    padding-bottom: 10px;
}

/* Support for an embedded version of the chatbot - Ver 1.7.1 */
.embedded-style {
    height: 50vh !important; /* Adjust as needed */
    width: 90vw !important; /* Adjust as needed */
    overflow: hidden;
    position: relative !important; /* Keeps bot in the same position */
    /* bottom: 10%; */
    margin: 10px auto; /* Centers horizontally and gives margin at top and bottom */
    padding: 10px; /* Adds padding inside the chatbot */
    box-shadow: none; /* Removes any floating shadows */
    left: 0;
    right: 0;
    /* Other styling as needed */
}

/* Wide - Ver 1.4.2 */
#chatbot-chatgpt.wide {
    width: 513px;
}

#chatbot-chatgpt.embedded-width {
    width: 90%;
}

#chatbot-chatgpt-header {
    display: flex;
    align-items: center;
    background-color: white; /* Hintergrundfarbe der Kopfzeile */
    padding: 10px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    color: white; /* Schriftfarbe */
}

#chatbot-chatgpt-conversation {
    flex-grow: 1;
    padding: 10px;
    overflow-y: auto;
    max-height: 90vh;
    margin-bottom: -20px;
}

#chatbot-chatgpt-input {
    display: flex;
    padding: 7px;
    align-content: stretch;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
    height: 4rem;
    margin-bottom: -10px;
}


#chatbot-chatgpt-message {
    flex-grow: 1;
    border: 1px solid black;
    border-radius: 3px;
    background: ghostwhite;
    margin-top: -15px;
    margin-right: 5px;
    width: 10%;
    font-size: 13px;
    background: ghostwhite;
    margin-top: -27px;
    margin-right: 5px;
    width: 10%;
    padding: 10px;
    height: 45px;
    color: black;
}

#chatbot-chatgpt-message:focus {
    border: 1px solid black; /* Change this to any color you prefer */
    outline: none; /* This removes the default outline */
}

#chatbot-chatgpt-submit {
    color: #fff;
    border: none;
    border-radius: 60px;
    padding: -49px -85px;
    margin-left: 15px;
    cursor: pointer;
    color: #85B439;
    height: 5rem;
    width: 5rem;
    margin-top: -26px;
}



/* CSS for append message */
.chat-message {
    max-width: 100%;
    word-wrap: break-word;
}

.user-message {
    text-align: right;
    font: inherit;
    font-family: inherit;
}

.user-text {
    display: inline-block;
    background-color: #85B439;
    color: #ffffff;
    padding: 5px 10px;
    border-radius: 12px;
    border-bottom-right-radius: 0;
    overflow-wrap: anywhere;
    font: inherit;
    font-size: 13px !important;
    font-family: inherit;
}

.bot-message {
    text-align: left;
}


.bot-text {
    display: inline-block;
    /* font-weight: bold; */
    background-color: white;
    color: #ffffff;
    padding: 5px 10px;
    border-radius: 12px;
    border-bottom-left-radius: 0;
    overflow-wrap: anywhere;
    font: inherit;
    font-size: 13px !important;
    font-family: inherit;
    color: #313131;
    max-width: 100%;
}
.error-message {
    text-align: center;
}

.error-text {
    color: red;
    font-weight: bold;
    font: inherit;
    font-family: inherit;
}

.message-space {
    height: 10px;
}

.chatbot-collapse-btn {
    position: relative;
    display: flex;
    align-items: center;
    background-color: white;
    border: none;
    cursor: pointer;
    text-align: center;
    padding: 15px;
    border-radius: 10%;
    justify-content: center;
    flex-wrap: nowrap;
    margin-top: 0px;
    color: black;
}


.chatbot-collapsed {
    width: 48px;
    height: 48px;
    background-color: #007bff;
    border-radius: 50%;
    cursor: pointer;
    display: none;
}

#chatbot-open-btn {
    position: fixed;
    bottom: 5%;
    right: 5%;
    background-color: #ec2d2d;
    border: none;
    cursor: pointer;
    padding: 5px;
    float: right;
}

#chatgpt-open-btn {
    position: fixed;
    bottom: 2%;
    right: 2%;
    background-color: #007bff;
    border: none;
    cursor: pointer;
    padding: 15px;
    float: right;
    border-radius: 10%;
    width: 80px;
    z-index: 100;
    font-family: dashicons;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px;
    position: fixed;
    right: 14px;
    border-radius: 50%;
    background-color: #85B439;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100px;
    height: 100px;
	display: block;
	margin-bottom: 300px;
}

/* Reset font family for Dashicons */
#chatgpt-open-btn-dashicon {
    position: relative;
    font-family: dashicons;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 20px;
    width: 20px;
}


#chatboat-chatgpt-custom-buttons {
    text-align: center;
}

#chatgptTitle.title {
    color: #85B439;
    font-size: inherit;
    font-family: inherit;
    flex-grow: 1;
}

.typing-indicator {
    display: inline-flex;
    justify-content: flex-start;
    background-color: white;
    border-radius: 12px;
    padding: 5px 10px;
    border-bottom-left-radius: 0;
}

.typing-dot {
    margin-right: 3px;
    animation: typing 1s infinite;
    color: gray;
}

.typing-dot:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typing {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

.chatbot-chatgpt-custom-button-class {
    background-color: #3B82F6;
    color: #ffffff;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    padding-left: 1rem;
    padding-right: 1rem;
    border-radius: 0.25rem;
    text-decoration: none;
  }

.chatbot-chatgpt-custom-button-class:hover {
    background-color: #1E3A8A;
}

.send_arrow {
    margin-top: -49px;
    margin-left: 1px;
}

.chatbot-chatgpt-custom-button-class a {
    color: black;
    text-decoration: none !important;
}

.chatbot-chatgpt-custom-button-class a:hover {
    color: black;
    text-decoration: none !important;
}

.voice_buttons {
    display: grid;
    grid-template-columns: 20% 20% 20%;
    margin-bottom: 18px;
    padding-left: 10px;
    width: 320px;
}

.termin_button_temp {
	margin-top: 1px;
}

/* Enlarge chat window */

#chatbot-chatgpt-head.large {
    width: 500px;
    height: 800px;

}

#chatbot-chatgpt.large {
    width: 480px !important;
    height: 780px !important;

}


#chatbot-chatgpt-submit.large {
        margin-left: -30px;

}

#chatbot-chatgpt-message.large {
    flex-grow: 1;
    border: 1px solid black;
    border-radius: 3px;
    background: ghostwhite;
    margin-top: -28px;
    margin-right: 50px;
    width: 310px;
}



.large_small_btn {
    cursor: pointer;
    background-color: white;
    border: none;
}

.bigger_btn {
    width: 24px;
    margin-top: 8px;
}





/*--------------------------------------Responsive------------------------------------------*/

/* 1723 x 972 (für 1920 x 1080) Desktop*/
@media only screen and (min-height: 900px) and (max-height: 1100px) {

    #chatbot-chatgpt-head {
        margin-bottom: 140px !important;
        height: 630px;
    }

    #chatbot-chatgpt {        
        margin-bottom: 150px;
        height: 610px !important;

    }

    #chatbot-chatgpt-head.large {
        width: 620px;
        height: 620px;
    }

    #chatbot-chatgpt.large {
        height: 600px !important;
        width: 600px !important;
    }

}



/* 1280 x 720 Desktop*/
@media only screen and (min-height: 0px) and (max-height:900px) and (min-width:768px) {
    
    #chatbot-chatgpt-head {
        margin-bottom: -30px !important;
        height: 490px;
    }

    #chatbot-chatgpt {
        margin-bottom: -20px;
        height: 470px !important;
    }

    .Avatarius {
        margin-top: -5rem;
    }
    
    #chatbot-chatgpt-head.large {
        width: 600px;
        height: 490px;
    
    }

    #chatbot-chatgpt.large {
        height: 470px !important;
        width: 580px !important;
    }

    #chatbot-chatgpt-submit.large {
            margin-left: -5px;
    }
    
    #chatbot-chatgpt-message.large {
        width: 380px;
    }

    .overlay {    
    height: 70%;
    }


    
}



/*Mobile*/
@media screen and (min-width: 0px)and (max-width:768px) {


.large_small_btn {
    cursor: pointer;
    display: none;
}
    

#chatbot-chatgpt-head.large {
    position: fixed;
    right: -3px;
    width: 9999px;
    height: 9999px;
    background-color: #f1f1f1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    margin-bottom: -1rem !important;
}


#chatbot-chatgpt-head {
    position: fixed;
    right: -3px;
    width: 102%;
    height: 102%;
    background-color: #f1f1f1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    margin-bottom: -2rem !important;
}

#chatbot-chatgpt-erase-btn {
    height: auto;
    min-width: 30px;

}


#chatbot-chatgpt.large {
    width: 100% !important;
    margin-bottom: 4rem !important;
    right: 0px;
    height: 90% !important;
}


#chatbot-chatgpt {
    width: 100% !important;
    margin-bottom: 4rem !important;
    right: 0px;
    height: 90% !important;
}


.voice_buttons {
	width: 465px !important;
}
	
.chat-circle {
    width: 50px;
    height: 50px;
    background-color: blue;
    border-radius: 50%;
    text-align: center;
    line-height: 50px;
    color: white;
    cursor: pointer;
}

.NULL {
font-size: 15px ;
}
	
#chatbot-chatgpt-conversation {
    margin-bottom: 30px;
	
}
#chatbot-chatgpt-message {
    flex-grow: 1;
    border: 1px solid black;
    border-radius: 3px;
    background: ghostwhite;
    margin-top: -32px;
    margin-right: 0px;
    width: 400px;
    font-size: 13px;
}


.square-button-support {
    padding: 20px 40px;
    font-size: 18px !important;

}


#chatbot-chatgpt-submit.large {
    color: #fff;
    border: none;
    border-radius: 60px;
    padding: -49px -85px;
    margin-left: 50px;
    cursor: pointer;
    color: #85B439;
    height: 3rem;
    margin-top: -40px;
    position: relative;
    left: -40px;
}


#chatbot-chatgpt-submit {
    color: #fff;
    border: none;
    border-radius: 60px;
    padding: -49px -85px;
    margin-left: 50px;
    cursor: pointer;
    color: #85B439;
    height: 5rem;
    margin-top: -40px;
    position: relative;
    left: -5px;
    top: 5px;
}

.test {
    display: flex;
    align-items: center;
    background-color: white;
    padding: 10px;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    color: white;
    height: 70px;
    margin-bottom: -10px;
    width: 100%;
    justify-content: space-evenly;  
    }

    .dropdown-content {
        position: absolute;
        background-color: white;
        top: 35rem;
        left: 14rem;
        animation: fadeIn 0.3s;
        border-radius: 8px;
        border: 1px solid grey;
    }

    #chatbot-chatgpt-upload-file {
        background-color: white !important;
        border: none;
        border-radius: 1px;
        padding: 1px 1px;
        margin-left: 1px;
        min-width: 20px;
        cursor: pointer;
        display:none;
    }

    .overlay {    
        right: 7px;
        width: 103%;
        height: 84%;
        top: 36rem;
        }

    .popup {
        background: white;
        padding: 20px;
        border-radius: 5px;
        text-align: center;
        }
    
    #chatgpt-open-btn {
        top: 40rem;
        right: 1rem;

    }


    }

code {
    font-size: 11px !important;
}

pre {
    margin: 20px 0;
    padding: 20px;
    color: #2080ad;
    background-color: #fafafa;
    max-width: 100%;
}
