:root {
    --primary-color: #4D4D4D;
    --secondary-color: #81B556;
    --background-color: #252122;
    --button-background-color: #06834f;
    --button-text-color: #E1E1E1;
    --like-dislike-button-color: #3F3F3F;
    --chat-background-color: #E1E1E1;
    --chat-history-background-color: #878484;
    --chat-history-mobile-color: #878484;
}



* {
    box-sizing: border-box;
    color: white;
}

body, html {
    height: 100%; 
    width: 100%;
    overflow: hidden;
    font-family: CelebriSans Bold;
    background-color: var(--background-color);
}
.input-box textarea img {
    max-width: 200px;
    max-height: 200px;
    display: block;
    margin: 10px 0;
}
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: var(--background-color);
}

.warning-message {
    background-color: #fff3cd;
    border: 1px solid #ffeeba;
    color: #856404;
    padding: 10px;
    margin: 10px 0;
    border-radius: 5px;
    text-align: center;
    font-weight: bold;
}

.header{
    position: relative;
    margin-top: 0;
    width: 100vw;
    background-color: var(--background-color);
    min-height: 4vh;
    max-height: 15vh;
    padding: 1rem;
    text-align: right;
    z-index: 1;

}

.logo-div{
    max-width: 94%;
    align-items: center;
    display: contents;
}

.logo{
    width: 72%;
    margin: 20px auto;
    height: 9vh;
    color: var(--secondary-color);
    opacity: 90%;
}

.svg-link {
    display: inline-block;
    text-decoration: none; 
}

.user-photo-chat{
    width: 43px;
    height: 43px;
    fill: var(--secondary-color);
    border-radius: 19px;
}

#user{
    margin-right: 1rem;
    fill: var(--secondary-color);
    opacity: 90%;
    cursor: pointer;
    margin-top: 0.5rem;
    width: 2.5rem;
    padding: 0;
}

.home-container{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    min-height: 75vh;
}

.new-chat-button {
    display: flex;
    margin: auto;
    align-items: center;
    justify-content: space-around;
    width: 12rem;
    height: auto;
    background-color: transparent;
    color: var(--button-text-color);
    font-size: 1.3rem; 
    border: none; 
    border-radius: 8px; 
    /* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);  */
    cursor: pointer; 
    text-align: center; 
    padding: 10px; 
    transition: background-color 0.3s ease;
    margin-top: 0.5rem;
}

.new-chat-button:hover {
    opacity: 80%;
}    

.plus-chat{
    width: 2.4rem;
    height: 2rem;
    border: 2px solid var(--secondary-color);
    border-radius: 0.5rem;
    align-self: center;
    padding-left: 0.3rem;
    padding-right: 0.3rem;
}


.history-container{
    display: flex;
    flex-direction: column;
    width: 18vw;
    min-width: 20vw;
    min-height: 80vh;
    background-color: #212121;
    justify-content: flex-start;
    overflow: auto;
    border-right: 1px solid #212121;
    position: absolute;
    z-index: 10001;
    top: 0;
    height: 100%;
    box-shadow: 28px 0 22px rgb(8 7 7 / 20%);
}

.logo-mobile{
    display: none;
}

.logos_footer {
    margin: 0 auto 2rem auto;
}

img.logo_tool {
    width: 7rem;
    padding-right: 1rem;
}

span.welcome {
    margin-right: 20px;
    color: #E1E1E1;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    align-content: center;
}

.profile {
    display: flex;
    position: absolute;
    right: 1rem;
    top: 1rem;
}

.system-message {
    align-items: center;
    font-size: 0.875rem;
    color: white;
    border-color: #ff0400;
    display: flex;
    gap: 0.75rem;
    border-width: 1px;
    border-style: solid;
    border-radius: 1rem;
    padding: 1.5rem;
}

.history-chat{
    background-color: #81b5568c;
    opacity: 80%;
    border-radius: 0.8rem;
    margin-bottom: 3vh;
    padding-left: 2vw;
    padding: 1vw;
    align-content: center;
    flex-wrap: wrap;
    align-items: center;
}

.history-chat:hover{
    cursor: pointer;
    background-color: var(--secondary-color);
}

.active-chat{
    background-color: var(--secondary-color);
    align-items: center;
    position: relative;
    padding-right: 1.2rem;
}

.user-id {
    color: var(--chat-background-color);
    text-align: center;
    font-family: monospace;
}

.modal {
    display: none;
    position: fixed;
    z-index: 200000;
    padding-top: 29px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
}

  .modal-content {
    margin: auto;
    width: 27rem;
  }
  
#chat-list{
    overflow-y: auto;
    display: flex;
    padding: 2vw;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) transparent;
    flex-direction: column-reverse;
    /* color: var(--primary-color); */
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

div#bet-buttons-container {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-items: center;
    margin: 10px;
}

.bet-button {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 200px;
    height: 50px;
    background-color: #434343;
    overflow: hidden;
    color: var(--primary-color);
    padding: 0 10px;    
    color: #FFF;
    font-family: sans-serif, monospace;
    font-size: 19px;
    font-style: normal;
    font-weight: 550;
    line-height: normal;
    border-radius: 8px;
    text-align: center;
}

.bet-button .fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background-color: #EA5050;
    width: 0%;
    transition: width 0.5s;
}

span {
    position: relative;
    flex: 1;
}

.progress-circle {
    width: 30px;
    height: 30px;
}

.progress-circle svg {
    width: 100%;
    height: 100%;
    position: relative;
}

.progress-circle circle {
    fill: none;
    stroke-width: 5;
}

.progress-circle .background {
    stroke: rgb(170, 166, 166);
}

.progress-circle .foreground {
    stroke: #FFF;
    stroke-dasharray: 4.2;
    stroke-dashoffset: 64.2; 
    transition: stroke-dashoffset 0.5s;
}


.login-container{
    height: 100%;
    margin: 3rem;
    color: var(--button-text-color);
    width: 70%;
    align-self: center;
    align-content: flex-end;
}

.login-button{
    width: 90%;
    color: var(--secondary-color);
}

.chat-container {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative; 
    max-width: 50vw;
    min-height: 85vh;
    height: 55vh;
    margin: auto;
    margin-left: 26vw;
}

.chat-messages {
    padding: 2rem;
    padding-top: 2vw;
    width: 76vw;
    overflow-y: auto;
    flex-grow: 1; 
    margin-bottom: 0; 
    background-color: var(--background-color);
    padding-bottom: 0;
}

.message-container{
    display: flex;
    flex-direction: row;
    width: 90%;
    margin: auto;
   color: var(--button-text-color);
}

.message-container-send{
    display: flex;
    flex-direction: row;
}

.message {
    padding: 10px;
    border-radius: 0.8rem;
    display: flex; 
    flex-direction: column;
    justify-content: space-between; 
    min-height: 4vh;
    width: 80%;
}

.message p {
    display: block;
    align-items: center;
    line-height: 1.5rem;
}

.message.info {
    display: flex;
    flex-direction: row-reverse;
    margin-top: -10px;
    font-size: smaller;
}

.input-box {
    display: flex;
    align-items: center;
    padding: 10vh;
    padding-bottom: 5vh;
    padding-top: 3vh;
    width: 90%; 
    box-sizing: border-box;
    margin: auto; 
    bottom: 0;
    border-radius: 0.8rem;
    justify-content: space-between;
    text-align: center;
    background-color: var(--background-color);
}

.input-box textarea {
    color: var(--chat-background-color);
    flex: 1;
    border: none; 
    border-bottom: 1px solid var(--button-text-color);
    outline: none; 
    background-color: var(--background-color);
    margin-right: 1vw;
    font-size: 2vh;
    text-decoration: none;
    resize: none;
    max-height: 24vh;
    overflow-y: auto;
    font-family: Arial, Helvetica, sans-serif;
    box-sizing: border-box;
    padding-right: 1rem;
}


.microphone-normal{
    cursor: pointer;
    height: 1.8rem;
    fill: var(--button-text-color);
}

.microphone-recording{
    height: 1.8rem;
}

.input-box input[type="submit"] {
    padding: 0.5rem 1rem;
    border: none;
    background-color: var(--secondary-color);
    cursor: pointer;
    transition: background-color 0.3s ease;
    border-radius: 0.5rem;
    color: var(--button-text-color);
    /* font-size: 2vh; */
}

.input-box input[type="submit"]:hover {
    background-color: var(--primary-color);
}

.user-photo{
    background-color: transparent;
    border: none;
}
.user-photo svg {
    width: 43px;
    height: 43px;
    fill: var(--secondary-color);
}

.user-photo img {
    width: 43px;
    height: 43px;
    fill: var(--secondary-color);
    border-radius: 19px;
}

.like-button, .dislike-button, .copy-button, .edit-button {
    background-color: transparent;
    border: none;
    cursor: pointer;
    margin-left: 5px;
}

.like-button svg, .dislike-button svg, .copy-button svg, .edit-button svg{
    fill: var(--like-dislike-button-color);
    width: 20px;
    height: 20px;
    transition: fill 0.3s ease;
}

.like-button:hover svg, .dislike-button:hover svg, .copy-button:hover svg, .edit-button:hover svg{
    fill: var(--chat-history-background-color);
}

.like-button.liked svg, .dislike-button.liked svg{
    fill: var(--secondary-color);
}

.like-dislike-container {
    display: flex;
    justify-content: flex-end;
    margin-right: 2vw;
}

.copy-notification {
    position: fixed;
    top: 15vh;
    right: 40vw;
    margin: auto;
    background-color: rgba(173, 166, 166, 0.414);
    color: black;
    padding: 0.8rem 1.4rem;
    border-radius: 0.5rem;
    z-index: 9999;
}

#menu-button {
    fill: var(--secondary-color);
    width: 2rem;
    height: 2rem;
    margin-right: 2rem;
    cursor: pointer;
    display: none;
}  

.all-suggestions{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 10px;
}

.suggestion{
    box-sizing: content-box;
    margin: auto;
    /* background-color: var(--primary-color); */
    overflow-y: auto;
    text-align: center;
    border: 1px solid var(--chat-history-background-color);
    border-radius: 0.5rem;
    padding: 2vh;
    margin-bottom: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-right: 2vw;
    width: -webkit-fill-available;
    height: -webkit-fill-available;
    color: var(--button-text-color);
}

.suggestions-container{
    display: flex;
    flex-direction: column-reverse;
    margin: auto;
    width: 80%;
    padding: 0 5vw;
    align-items: center;
    margin-top: 25vh;
}

.chip-container{
    width: 97%;
    height: 4rem;
    text-align: center;
    align-self: start;
    margin-bottom: 2rem;
}

.green-chip{
    max-width: 5rem;
    padding: 0;
    height: 100%;
    margin-bottom: 2rem;
}

.help-text{
    text-align: center;
    font-weight: bold; 
    margin-bottom: 5vh;
}

.suggestion:hover{
    cursor: pointer;
    background-color: var(--secondary-color);
}

.loader {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: auto;
}

.source-button{
    margin-left: 1vw;
    align-self: end;
    color: rgb(9, 226, 255);
}

.source-container{
    width: 70%;
    border: 0.5px solid white;
    padding: 1vw;
    margin: auto;
    padding-left: 2vw;
    padding-right: 2vw;
}

.source-title{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.source-title svg{
    width: 1vw;
    cursor: pointer;
}

.source-container-hidden {
    display: none;
}

.login-title{
    font-weight: lighter;
    font-size: 1rem;
    margin-bottom: 0;
}

.login-button{
    border-radius: 0.8rem;
    margin: auto;
    margin-bottom: 0;
    padding: 0.5rem;
    font-size: 2vh;
    border: none;
    background-color: var(--background-color);
    border: 1px solid var(--secondary-color);
    color: var(--button-text-color);
}

.feed{
    cursor: pointer;
    border-radius: 0.8rem;
    margin: auto;
    margin-top: 20px;
    padding: 0.5rem;
    font-size: 2vh;
    border: none;
    background-color: var(--background-color);
    border: 1px solid var(--secondary-color);
    color: var(--button-text-color);
}
.dropbtn {
    background-color: transparent;
    color: white;
    padding: 16px;
    font-size: 16px;
    border: none;
    cursor: pointer;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    z-index: 1;
    padding-right: 10px;
}

.dropdown-content button {
    color: black;
    background-color: lightgray;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    border-radius: 0.8rem;
    margin: auto;
    margin-bottom: 1vh;
    padding: 0.5rem;
    border: none;
    font-size: 2vh;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content button:hover {
    background-color: lightgray;
    color:black;
}


.signup-button{
    width: 90%;
    background-color: var(--secondary-color);
    color: var(--button-text-color);
    border: 1px var(--secondary-color);
    border-radius: 0.8rem;
    margin: auto;
    margin-bottom: 1vh;
    padding: 0.5rem;
    border: none;
    font-size: 2vh;
}

.login-button:hover{
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
    color: #fafafa;
    cursor: pointer;
}

.signup-button:hover{
    background-color: var(--primary-color);
    border: var(--primary-color);
    color: #fafafa;
    cursor: pointer;
}

.more-options {
    position: absolute;
    right: 10px;
    top: 30%;
    width: 0.5rem;
    align-content: end;
    cursor: pointer;
    margin-left: 0.5rem;
    fill: var(--button-text-color);
}

.dropdown-chat {
    /*Insert display:none for dropdown*/
    display: none;
    position: absolute;
    background-color: var(--chat-background-color);
    padding: 0.6rem;
    border-radius: 1rem;
    width: max-content;
    left: -4.8rem;
    top: 2.5rem;
}

/* .more-options:hover .dropdown-chat {
    display: block;
  } */

.share-chat{
    text-decoration: none;
    color: black;
}

.card-image{
    width: 1.2rem;
    max-height: 2rem;
    margin-right: 0.3rem;
    vertical-align: bottom;
}

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

  @media screen and (min-width: 1600px) {
    .header {
        height: 12vh;
        padding: 1rem;
    }

    /* .logo {
        width: 100%;
        font-size: 1.5rem; 
    } */

    .home-container {
        align-items: center;
        min-height: 88vh;
    }

    .history-container{
        height: 88vh;
    }

    #menu-button {
        width: 1rem;
        height: 1rem;
    }  

    .input-box {
        padding: 2rem;
        padding-top: 0.5rem;
        height: 12vh;
    }

    .input-box textarea {
        font-size: 2vh;
        margin-right: 3vw;
    }

    .history-chat {
        padding: 1vw;
    }

    .input-box input[type="submit"] {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .suggestions-container {
        margin-top: 15vh;
        padding: 11rem;
    }

    .suggestion {
        width: 87%;
        padding: 2vh;
    }

}

  @media screen and (min-width: 1024px) {
    .header {
        height: 15vh;
    }

    .history-container {
        width: 25vw;
        height: 100%;
    }

    .chat-container {
        min-width: 70vw;
        height: calc(100vh - 20vh);
    }

    .input-box {
        padding-bottom: 3rem;
        height: 10vh;
    }
}

@media screen and (max-width: 1023px) and (min-width: 769px) {
    .header {
        height: 15vh;
        align-items: center;
    }

    .logo-div{
        margin-left: 28vw;
    }

    .history-container {
        width: 28vw;
        min-height: 80vh;
    }

    .chat-container {
        min-width: 65vw;
        height: calc(100vh - 15vh);
        margin-right: 0;
        margin-left: 32vw;
    }

    .chat-messages{
        align-self: center;
        width: 100%;
    }

    .input-box {
        padding: 1.5rem;
        height: 12vh;
    }

    #user {
        max-height: 2.5rem;
        /* margin: 0; */
        margin-top: 0;
    }

    .suggestions-container{
        padding: 0;
    }

    .more-options {
        width: 1rem;
        margin-left: 0.5rem;
    }
}

@media screen and (max-width: 768px) {
    html body{
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .header {
        position: relative;
        display: flex;
        flex-direction: row;
        align-items: center;
        width: 100%;
        height: 14vh;
        justify-content: space-between;
        text-align: -webkit-center;
    }

    .logo-div-mobile{
        margin: 0;
        min-width: 65%;
        align-items: center;
    }

    .modal-content {
        width: auto;
    }

    .modal {
        padding: 0;
    }

    .profile{
        display: flex;
        position: unset;
    }

    .logo {
        max-width: 22rem;
        text-align: center;
        max-height: 11%;
       display: none;
    }
    
    .logo-mobile{
        display: flex;
        max-width: 80%;
        height: 7vh;
    }

    .chat-messages{
        max-width: 80%;
    }

    #user {
       /* width: 4rem; */
       margin: auto;
       /* max-height: 3.5rem; */
       max-height: 2rem;
       padding: 0;
       max-width: 5rem;
    }

    #menu-button {
        display: block;
        margin-left: 2vw;
        background-color: transparent;
        color: #fafafa;
        box-shadow: none;
        border: none;
        min-width: 1.5rem;
        padding: 0;
        margin-right: 0;
    }

    .history-container {
        display: none; 
        width: 100%;
        height: calc(100vh - 10vh);
        background-color: var(--chat-history-mobile-color);
        padding: 20px;
        z-index: 1001;
        overflow-y: auto;
        transition: transform 0.3s ease;
        align-items: center;
    }

    /* .new-chat-button{
    display: flex;
    margin: auto;
    position: absolute;
    background-color: var(--secondary-color);
    top: 2rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    border-radius: 0.5rem;
    color: var(--button-text-color);
    padding: 10px 20px;
    border: none;
    font-size: 2vh;
} */

   
    .chat-container {
        margin: auto;
        max-width: 100%;
        overflow: hidden;
        height: 100vh; 
        z-index: 0;
    }

    .chat-messages {
        align-self: center;
        max-height: 70vh;
        overflow-y: auto;
        width: 100vw;
        overflow-x: hidden;
        padding: 2vh;
    }

    .dropdown-content button {
        color: black;
        padding: 1rem 1.2rem;
        text-decoration: none;
        display: block;
        border-radius: 0.8rem;
        margin: auto;
        margin-bottom: 1vh;
        padding: 0.5rem;
        border: none;
        font-size: 1.5vh;

    }

    .message-container{
       width: 100%;
       padding-bottom: 1rem;
    }

    .input-box {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        padding: 1rem;
        /* height: 15vh; */
        box-sizing: border-box;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-left: 2rem;
        padding-top: 0.5rem;
        min-height: 10vh;
    }

    .input-box textarea { 
        font-size: 1rem;
        padding-left: 0.5rem;
        min-height: 1.5rem;
    }

    #menu-button:hover {
        fill: var(--secondary-color);
    }

    .history-container {
        display: none; 
    }
    
    .history-container.show {
        display: flex;
        transform: translateX(0);
        min-width: 100vw;
        margin-top: 12vh;
        background-color: var(--background-color);
        border-right: none;
    }

    .history-chat{
        border-radius: 0.8rem;
        margin-bottom: 3vh;
        padding-left: 6vw;
        padding: 3vw;
    }

    .suggestions-container{
        display: flex;
        flex-direction: column-reverse;
        justify-content: space-between;
        width: 95%;
        padding: 0;
        margin-top: 1rem;
    }

    .all-suggestions{
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-end;
        flex-wrap: wrap;
    }

    .suggestion {
        width: 100%; 
        margin: 0 auto 0.5rem auto;
        cursor: pointer;
        transition: background-color 0.3s ease;
        height: fit-content;
        box-sizing: border-box;
        display: block;
    }

    .loader {
        margin-bottom: 10vh;
    }

    .like-dislike-container {
        margin-top: auto; 
        margin-bottom: 16px;
    }
    
    .message{
        padding-bottom: 0;
        width: auto;
    }

    .like-button, .dislike-button, .copy-button {
        margin-left: 0.1rem;
        background-color: transparent;
    }
        
    .chart-container{
        max-width: 80%;
    }

    .more-options {
        width: 0.5rem;
        margin-left: 0;
    }

    .message-container {
        background-color: none;
        border-radius: 1rem;
        padding: inherit;
        margin-bottom: 1rem;
        flex-wrap: wrap;
        background-color: #333333;
        border-radius: 24px;
        padding: 10px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    .login-container{
        margin-bottom: 6rem;
    }

}

.zoom-400{
    min-height: 20vh;
}

.chat-header {
    display: flex;
    justify-content: flex-end;
    padding: 10px 20px;
    background-color: var(--background-color);
    border-bottom: 1px solid #333;
}

.share-button {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.share-button:hover {
    background-color: #6a9a47;
}

.share-button svg {
    fill: currentColor;
}

.share-button:disabled {
    background-color: #666;
    cursor: not-allowed;
}

/* Share modal styles */
.share-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.share-modal-content {
    background-color: var(--background-color);
    border-radius: 12px;
    padding: 24px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

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

.share-modal-title {
    font-size: 18px;
    font-weight: 600;
    color: white;
}

.share-modal-close {
    background: none;
    border: none;
    color: #999;
    font-size: 24px;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.share-url-container {
    margin-bottom: 20px;
}

.share-url-label {
    display: block;
    margin-bottom: 8px;
    color: #ccc;
    font-size: 14px;
}

.share-url-input {
    width: 100%;
    padding: 12px;
    border: 1px solid #444;
    border-radius: 6px;
    background-color: #333;
    color: white;
    font-size: 14px;
    margin-bottom: 8px;
}

.share-url-input:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.share-copy-button {
    background-color: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 6px;
    padding: 8px 16px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.share-copy-button:hover {
    background-color: #6a9a47;
}

.share-info {
    font-size: 12px;
    color: #999;
    margin-top: 8px;
}

.share-success {
    color: var(--secondary-color);
    font-size: 14px;
    margin-top: 8px;
    display: none;
}

/* Import button styles */
.import-button {
    background-color: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease;
    margin-top: 20px;
    width: 100%;
}

.import-button:hover {
    background-color: #6a9a47;
}

.import-button:disabled {
    background-color: #666;
    cursor: not-allowed;
}

/* Shared chat info */
.shared-chat-info {
    background-color: #333;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 20px;
    border-left: 4px solid var(--secondary-color);
}

.shared-chat-title {
    font-size: 16px;
    font-weight: 600;
    color: white;
    margin-bottom: 8px;
}

.shared-chat-meta {
    font-size: 12px;
    color: #999;
}
