html, body {
    background-color: #020930;
    color: #ffffff; 
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    user-select: text; 
    background: transparent; 
}

#logo-container {
    position: fixed;
    top: 10px;
    left: 10px;
    width: 200px; 
    height: 200px;
    user-select: none;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
}

#logo-container img {
    max-width: 100%;
    max-height: 100%;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 0 2px #ffffff);
    transition: filter 0.3s ease;
}

#logo-container img:hover {
    filter: drop-shadow(0 0 4px #ffffff);
}

#images-container {
    position: fixed;
    top: 220px;
    left: 10px;
    width: 200px;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
    user-select: none;
    z-index: 9;
    background: transparent;
}

#images-container .image-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 180px;
    user-select: none;
}

#images-container .image-item:first-child .image-header {
    font-family: Arial, sans-serif;
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 20px;
    text-align: center;
    user-select: none;
    background: linear-gradient(90deg, #4a90e2, #70a1ff, #4a90e2, #a0c4ff, #4a90e2);
    background-size: 300% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient-move 4s linear infinite;
    background-clip: text;
    text-fill-color: transparent;
}

#images-container .image-item:first-child .image-bottom-text {
    margin-top: -24px;
}

.no-underline-link {
    text-decoration: none;
    color: inherit;
}

#images-container .image-bottom-text {
    font-family: Arial, sans-serif;
    font-weight: bold;
    font-size: 16px;
    text-align: center;
    margin-top: -4px;
    text-transform: uppercase;
    letter-spacing: 2px;
    user-select: none;
    background: linear-gradient(90deg, #4a90e2, #70a1ff, #4a90e2, #a0c4ff, #4a90e2);
    background-size: 300% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient-move 4s linear infinite;
    background-clip: text;
    text-fill-color: transparent;
}

#images-container img {
    max-width: 170px;
    height: auto;
}

@keyframes gradient-move {
    0% {
        background-position: 300% 0;
    }
    100% {
        background-position: 0% 0;
    }
}


.image-hologram-container {
    position: relative;
    width: 180px; 
    height: auto;
    user-select: none;
    overflow: hidden;
}

.image-hologram-container::before {
    content: "";
    display: block;
    padding-top: 100%; 
}

.image-hologram-container img.holo-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 180px;
    height: auto;
    object-fit: contain;
    transition: opacity 1.5s ease-in-out;
    filter: drop-shadow(0 0 1px #70a1ff);
}

@keyframes holoFade1 {
    0%, 33.333%, 100% { opacity: 1; }
    38.333%, 95% { opacity: 0; }
}

@keyframes holoFade2 {
    0%, 33.333% { opacity: 0; }
    38.333%, 66.666% { opacity: 1; }
    71.666%, 100% { opacity: 0; }
}

@keyframes holoFade3 {
    0%, 66.666% { opacity: 0; }
    71.666%, 95% { opacity: 1; }
    100% { opacity: 0; }
}

.image1 {
    animation: holoFade1 15s infinite ease-in-out;
}

.image2 {
    animation: holoFade2 15s infinite ease-in-out;
}

.image3 {
    animation: holoFade3 15s infinite ease-in-out;
}


#chat-wrapper {
    display: flex;
    flex-direction: column;
    width: 68vw;
    max-width: 2000px;
    min-width: 320px;
    height: 90vh;
    max-height: 1100px;
    min-height: 400px;
    margin-right: 20px;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(255,255,255,0.6);
    animation: auroraGlow 6s ease-in-out infinite;
}

#chat-container {
    flex: 1 1 auto;
    padding: 10px;
    overflow-y: auto;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    background: rgba(0, 0, 0, 0.3); 
    display: flex;
    flex-direction: column;
    min-height: 0;
}

h1 {
    margin: 0;
    padding: 15px;
    background-color: #084f75;
    color: white;
    text-align: center;
    user-select: none;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    font-size: 20px;
    flex-shrink: 0;
}


.message {
    max-width: 90%;
    display: inline-block;
    margin-bottom: 10px;
    padding: 8px 12px;
    border-radius: 10px;
    line-height: 1.4;
    word-wrap: break-word;
    white-space: pre-wrap;
    font-size: 14px;
    align-self: flex-start;
    background-color: #ececec;
    color: #333;
    border-bottom-left-radius: 0;
    box-sizing: border-box;
}

.message p {
    margin-top: 0;
    margin-bottom: 0;
}

.message.user {
    align-self: flex-end;
    background-color: #d0e9f9;
    color: #222;
    border-radius: 10px 10px 0 10px;
    border-bottom-right-radius: 0;
    padding: 8px 12px;
}

.message.bot {
    display: flex;
    flex-direction: column;
    justify-content: flex-end; 
    align-self: flex-start;
    background-color: #ececec;
    color: #333;
    border-bottom-left-radius: 0;
    padding: 8px 12px;
    box-sizing: border-box;
}

pre {
    position: relative;
    background-color: #2d2d2d !important;
    color: #ccc !important;
    padding: 15px 40px 15px 15px;
    border-radius: 8px;
    overflow-x: auto;
    font-size: 13px;
    line-height: 1.4;
    margin: 8px 0;
    white-space: pre-wrap;
    word-wrap: break-word;
    font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace;
    box-sizing: border-box;
}

pre code {
    background: transparent !important; 
    color: #ccc !important;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    white-space: pre-wrap;
    word-wrap: break-word;
}

.copy-btn {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 18px;
    height: 18px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    border: none;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    padding: 0;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}

.copy-btn:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: scale(1.1);
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
}

.copy-btn:focus {
    outline: none;
    background: rgba(74, 144, 226, 0.6);
    box-shadow: 0 0 8px rgba(74, 144, 226, 0.8);
    transform: scale(1.1);
    color: white;
}

.copy-btn.copied {
    color: #4caf50;
}


#input-container {
    display: flex;
    align-items: center;
    padding: 10px;
    background-color: #084f75 /*#fff*/;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    flex-shrink: 0;
}


#prompt {
    flex-grow: 1;
    resize: none;
    padding: 10px;
    font-size: 14px;
    border-radius: 20px;
    border: 1px solid #ccc;
    outline: none;
    max-height: none; /* Убрал max-height */
    overflow-y: hidden; /* будет переключаться на auto из JS */
    line-height: 1.5em;
    min-height: 40px;
}



#prompt:focus {
    border-color: #4a90e2;
    box-shadow: 0 0 5px rgba(74, 144, 226, 0.5);
}

#send-btn {
    background-color: #4a90e2;
    border: none;
    color: white;
    font-weight: bold;
    padding: 0 20px;
    margin-left: 10px;
    border-radius: 20px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    user-select: none;
    font-size: 14px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px; /* добавить высоту, напр., 38-40px */
    min-width: 64px; /* разумная ширина */
}

#send-btn:hover:not(:disabled) {
    background-color: #357ABD;
}

#send-btn:disabled {
    background-color: #a0c4f7;
    cursor: default;
}

table {
    border-collapse: collapse;
    width: 100%;
    margin-top: 10px;
    margin-bottom: 10px;
}

th, td {
    border: 1px solid #ccc;
    padding: 6px 10px;
    text-align: left;
    color: #333;
}

th {
    background-color: #084f75;
    color: white;
}


#new-chat-btn {
    background-color: #084f75;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 10px 0;
    font-weight: bold;
    font-size: 14px;
    cursor: pointer;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 12px;
}

#new-chat-btn:hover {
    background-color: #0a5f8a;
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.8);
}

#saved-chats {
    flex-grow: 1;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.saved-chat-btn {
    background-color: #d0e9f9; 
    color: #084f75;
    border: none;
    border-radius: 8px;
    padding: 8px 10px;
    text-align: left;
    font-size: 13px;
    cursor: pointer;
    box-shadow: 0 0 6px rgba(74, 144, 226, 0.5);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    user-select: none;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.saved-chat-btn:hover {
    background-color: #a8d0f0;
    box-shadow: 0 0 10px rgba(74, 144, 226, 0.7);
}

.saved-chat-btn:focus {
    outline: none;
    box-shadow: 0 0 12px rgba(74, 144, 226, 1);
}

#sidebar-container {
    position: fixed;
    top: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 190px; /* общая ширина */
    z-index: 10;
}

#sidebar {
    background-color: #084f75;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(74, 144, 226, 0.3);
    display: flex;
    flex-direction: column;
    padding: 10px;
    width: 90%; 
    user-select: none;
    font-family: Arial, sans-serif;
}

#model-sidebar {
    background-color: #084f75;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(74, 144, 226, 0.3);
    display: flex;
    flex-direction: column;
    padding: 10px;
    width: 90%;
    user-select: none;
    font-family: Arial, sans-serif;
    margin-top: 0px;
}

#model-sidebar .model-btn {
    background-color: #084f75;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 10px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    margin-bottom: 10px;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    user-select: none;
}

#model-sidebar .model-btn:last-child {
    margin-bottom: 0;
}

#model-sidebar .model-btn:hover {
    background-color: #a8d0f0;
    box-shadow: 0 0 10px rgba(74, 144, 226, 0.7);
}

#model-sidebar .model-btn.active {
    background: linear-gradient(135deg, #00509e, #337acc) !important; 
    box-shadow: 0 0 8px #3399ff !important;
    color: white;
    font-weight: bold;
}

#burger-btn {
    display: none;
}


.user-logout-container {
    display: flex;
    flex-direction: column;
    color: white;
    font-weight: bold;
    width: 100%;
    margin-top:10px;
}

.user-logout-header {
    display: flex;
    align-items: center; 
    gap: 80px; 
}

.user-logout-header > span {
    font-size: 18px;
    color: white;
    font-weight: bold;
    white-space: nowrap;
    margin: 0 10px;
}

.logout-icon-button {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    transition: stroke 0.3s ease;
}

.logout-icon-button svg {
    stroke: white;
}

.logout-icon-button:hover svg {
    stroke: #ccc;
}

.user-logout-container small.balance-text {
    margin-top: 8px;
    font-size: 14px;
    color: white;
    font-weight: normal;
    display: block;
    line-height: 1.2;
}

.auth-links {
    margin-top: 0;
    margin-bottom: 0;
    color: white;
    font-weight: bold;
    font-size: 16px;
    white-space: nowrap;
}

.auth-links a.white-link {
    color: white;
    font-weight: bold;
    font-size: 16px;
    text-decoration: none;
}

.auth-links a.white-link:hover {
    color: #ccc;
    text-decoration: underline;
}

.auth-links a.white-link + a.white-link::before {
    content: " | ";
    color: white;
    font-weight: bold;
    font-size: 16px;
    user-select: none;
}

.balance-text {
    display: block;
    margin-top: 0px;
    font-size: 14px;
    color: white;
    font-weight: normal;
}

.balance-separator {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    margin: 8px 0;
    margin-bottom: 0px;
}


.balance-topup-link {
    display: inline-block;
    margin-top: 4px; 
    font-size: 14px; 
    font-weight: normal; 
    color: #ffffff;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
}

.balance-topup-link:hover {
    text-decoration: underline;
}

#model-prices-list {
    border-radius: 5px;
    font-size: 12px;
    margin: 0 24px;
    margin-top: 0px; 
}

#fantasy-bg {
    position: fixed;
    inset: 0;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
    background: radial-gradient(ellipse at center, #020930 0%, #000010 100%);
}

#stars-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: block;
    pointer-events: none;
    z-index: 0;
    mix-blend-mode: screen;
}

.planet {
    position: absolute;
    border-radius: 50%;
    box-shadow:
        0 0 15px 3px rgba(255, 255, 255, 0.3),
        inset 0 0 15px 5px rgba(255, 255, 255, 0.2);
    animation: planetOrbit 40s linear infinite;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.6));
}

#planet1 {
    width: 150px;
    height: 150px;
    background: radial-gradient(circle at 30% 30%, #ff6a00, #a04300 70%);
    top: 10vh;
    left: 15vw;
    animation-delay: 0s;
}

#planet2 {
    width: 100px;
    height: 100px;
    background: radial-gradient(circle at 40% 40%, #00aaff, #004466 80%);
    top: 70vh;
    right: 80vw;
    animation-delay: 15s;
}

#planet3 {
    width: 120px;
    height: 120px;
    background: radial-gradient(circle at 50% 50%, #aaddff, #005577 90%);
    top: 10vh;
    left: 70vw;
    animation-delay: 30s;
}

#planet4 {
    width: 130px;
    height: 130px;
    background: radial-gradient(circle at 35% 35%, #ffaa77, #774411 70%);
    top: 50vh;
    left: 50vw;
    animation-delay: 10s;
}

#planet5 {
    width: 90px;
    height: 90px;
    background: radial-gradient(circle at 40% 40%, #aaffcc, #004433 90%);
    top: 84vh;
    right: 5vw;
    animation-delay: 25s;
}

/*#model-sidebar .special-link {
    display: none;
}*/

.model-links-wrapper {
    margin-left: -8px;
    margin-right: -8px;
    padding-left: 8px;
    padding-right: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px 10px 0 0;
    padding-top: 8px;
    margin-top: 4px;
    box-sizing: border-box;
}

    #model-sidebar .special-link {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 32px;
        padding: 0 12px;
        font-size: 14px;
        font-weight: 600;
        color: #fff;
        background: linear-gradient(45deg, #3a7bd5, #00d2ff, #3a7bd5, #00d2ff);
        background-size: 300% 300%;
        border: 2px solid #4a90e2;
        border-radius: 8px;
        box-shadow: 0 0 10px rgba(74, 144, 226, 0.7);
        text-decoration: none;
        user-select: none;
        cursor: pointer;
        transition: box-shadow 0.3s ease, transform 0.2s ease;
        margin-top: 0px;
        box-sizing: border-box;
        font-family: Arial, sans-serif;

        animation: gradientShift 6s ease infinite;
    }

    #model-sidebar .special-link:hover,
    #model-sidebar .special-link:focus {
        box-shadow: 0 0 20px rgba(74, 144, 226, 1);
        outline: none;
        transform: scale(1.03);
        text-decoration: none;
        color: #ffffff;
    }

@media (max-width: 767px) {

    #chat-wrapper {
        animation: none !important;
        box-shadow: none !important;
        background-color: #ffffff !important;
        backdrop-filter: none !important;
        width: 100vw;
        height: var(--app-height);
        border-radius: 0;
        min-width: unset;
        min-height: unset;
        display: flex;
        flex-direction: column;
    }

    #chat-container {
        flex-grow: 1;
        overflow-y: auto;
        padding: 8px;
        border: none;
        background: #fff;
        display: flex;
        flex-direction: column;
        min-height: 0;
    }

    .message {
        max-width: 90%;
        font-size: 16px;
        line-height: 1.4;
        margin-bottom: 10px;
        padding: 8px 12px;
        word-wrap: break-word;
        white-space: pre-wrap;
    }

    .message p {
        margin-top: 0;
        margin-bottom: 0;
        line-height: 1.4;
    }

    h1 {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 36px;
        font-size: 18px;
        border-radius: 0;
        flex-shrink: 0;
    }

    #input-container {
        padding: 10px;
        border-radius: 0;
        border-top: 1px solid #ddd;
        flex-shrink: 0;
        display: flex;
        align-items: center;
        background-color: #084f75;
    }

    #prompt {
        resize: none;
        overflow-y: hidden; /* управляется JS */
        font-size: 16px;
        min-height: 45px;
        max-height: none; /* убрал */
        border-radius: 10px;
        line-height: 1.5em;
        flex-grow: 1;
        border: 1px solid #ccc;
        padding: 10px !important;
        padding-top: 5px !important;
        padding-bottom: 15px !important;
        outline: none;
        font-family: Arial, sans-serif;
    }

    #prompt:focus {
        border-color: #4a90e2;
        box-shadow: 0 0 5px rgba(74, 144, 226, 0.5);
    }

    #send-btn {
        width: 40px !important;
        height: 40px !important;
        min-width: 40px !important;
        min-height: 40px !important;
        padding: 0 !important;
        margin-left: 8px !important;
        border-radius: 50% !important;
        background-color: #4a90e2 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        line-height: 0 !important;
        border: none !important;
        cursor: pointer !important;
        flex-grow: 0 !important;
        flex-shrink: 0 !important;
        box-sizing: border-box !important;
    }

    #send-btn svg {
        width: 20px !important;
        height: 20px !important;
        display: block !important;
        object-fit: contain !important;
    }


    #send-btn:hover:not(:disabled) {
        background-color: #357ABD;
    }

    #send-btn:disabled {
        background-color: #a0c4f7;
        cursor: default;
    }

    #images-container {
        display: none;
    }

    #logo-container {
        width: 100px;
        height: 100px;
        top: 0;
        left: 0;
        padding-left: 0;
        background: transparent;
        z-index: 10;
        position: fixed; 
        display: flex;
        align-items: center;
        justify-content: center;
    }

    #logo-container img {
        filter: drop-shadow(0 0 2px #ffffff);
        transition: filter 0.3s ease;
        max-width: 100%;
        max-height: 100%;
    }

    #logo-container img:hover {
        filter: drop-shadow(0 0 8px #ffffff);
    }

    #logo-desktop {
        display: none;
    }

    #sidebar-container {
        position: fixed;
        top: 0;
        right: 0;
        width: 220px;
        background-color: #084f75;
        border-radius: 10px 0 0 10px;
        box-shadow: 0 0 20px rgba(74, 144, 226, 0.6);
        padding: 10px;
        display: flex;
        flex-direction: column;
        gap: 12px;
        z-index: 12;

        transform: translateX(105%);
        transition: transform 0.3s ease;
        overflow-y: auto;
    }

    #sidebar-container.open {
        transform: translateX(0);
    }

    #sidebar,
    #model-sidebar {
        width: 88%;
        margin: 0;
        border-radius: 8px;
        box-shadow: 0 0 10px rgba(255, 255, 255, 0.6);
        background-color: #084f75;
        padding: 10px;
        color: white;
        flex-shrink: 0;
    }

    #sidebar {
        margin-bottom: 0px;
    }
    
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

     @media (max-width: 767px) {
    .saved-chat-btn {
        white-space: nowrap !important;  
        overflow: hidden !important;     
        text-overflow: ellipsis !important; 
        display: block !important;      
        max-width: 100% !important;     
        line-height: 1.2 !important;
        padding: 6px 10px !important;
        font-size: 14px !important;
    }

    #new-chat-btn,
    #model-sidebar .model-btn {
        width: 100%;
        height: 35px;
        box-sizing: border-box;
        white-space: normal;
    }

    #burger-btn {
        position: absolute;
        right: 10px;
        top: 50%;
        transform: translateY(-50%);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        background: transparent;
        border: none;
        cursor: pointer;
        color: white;
        font-size: 28px;
        padding: 0;
        z-index: 11;
        user-select: none;
    }

    #burger-btn:hover,
    #burger-btn:focus {
        color: #a8d0f0;
        outline: none;
    }

    #overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.6);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease;
        z-index: 1;
    }

    #overlay.active {
        opacity: 1;
        visibility: visible;
    }
    
#model-prices-list {
    border-radius: 5px;
    font-size: 12px;
    margin: 0 24px;
    margin-top: -10px; 
}

.balance-separator {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    margin: 8px 0;
}

    html, body {
        height: 100%;
        margin: 0;
        padding: 0;
        overflow: hidden;
    }

    body {
        display: block;
    }

#fantasy-bg {
    display: block;
}

#stars-canvas {
  display: block;
}


    .planet {
        display: none !important;
    }
    
}


    .no-underline-link {
    text-decoration: none;
    color: inherit; 
    display: block; 
}

.no-underline-link:hover {
    text-decoration: none;
    cursor: pointer;
}

.no-underline-link .image-bottom-text {
    margin-top: -2px !important;
}




/*НОВЫЕ СТИЛИ*/
.attach-button {
    min-width: 40px !important;
    min-height: 40px !important;
    padding: 0px !important;
    padding-top: 5px !important;
    padding-right: 5px !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background: transparent;
    border: none;
    color: white;
    box-sizing: content-box;
}

.attach-button svg {
    width: 35px !important;
    height: 35px !important;
    display: block;
    transition: filter 0.3s ease;
}

.attach-button:hover svg {
    filter: drop-shadow(0 0 3px #4a90e2);
}



.attach-button svg path {
    transform-origin: 0 0; /* или top left */
    transform-box: fill-box;
    transform: translate(3px, 3px) scale(1.1) !important;
    transition: transform 0.2s ease;
}

.attach-button:hover svg path {
    transform-origin: 0 0;
    transform: translate(3px, 3px) scale(1.3) !important;
}


.attach-button svg {
    width: 35px !important;
    height: 35px !important;
    display: block;
    transition: filter 0.3s ease;
}

