body {
    font-family: 'Inter', sans-serif;
    flex-direction: column;
    text-align: left;
    padding: 120px 20px;
}

textarea, input {
    transition: box-shadow 0.2s ease-in-out;
}

textarea:focus, input:focus {
    box-shadow: none !important;
}

.btn-close {
    box-shadow: none !important;
}

.txt {
    color: #777;
}

#result {
    background-color: #f4f4f4;
    border-left: 4px solid #ccc;
    padding: 10px 20px;
    margin-top: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    white-space: pre-wrap;
    word-wrap: break-word;
    text-align: left;
}

#chooseModelBtn {
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn {
    box-shadow: none !important;
}

.btn:hover .btn:focus {
    box-shadow: none !important;
}

.btn-dark {
    background-color: #333;
    border: none;
    border-radius: 8px;
    padding: 10px 20px;
    display: block;
}

.model-list-wrapper {
    max-height: 200px;
    overflow-y: auto;
    padding-right: 15px;
    padding-left: 10px;
}

.model-item {
    cursor: pointer;
}

.model-list-wrapper::-webkit-scrollbar {
    width: 5px;
}

.model-list-wrapper::-webkit-scrollbar-thumb {
    background-color: #888;
    border-radius: 4px;
}

.model-list-wrapper::-webkit-scrollbar-thumb:hover {
    background-color: #555;
}

.footer-copyright {
    text-align: center;
    font-size: 0.8rem;
    color: #333;
    background-color: transparent;
    margin: 0;
}

.slide-container {
    position: fixed;
    top: 0;
    left: 100%;
    width: 100%;
    height: 100%;
    background-color: #E9ECEF;
    overflow-y: auto;
    z-index: 9999;
    padding: 100px 40px;
    transition: transform 0.5s ease-in-out;
}

.slide-container.active {
    transform: translateX(-100%);
}

.hidden {
    display: none;
}

.hero-section {
    padding: 25px 30px;
    background-color: #F8F9FA;
    color: black;
    border-radius: 12px;
}

.source a {
    display: block;
    text-decoration: none;
    color: #777;
}

.source a:hover {
    text-decoration: underline;
}

.kodee::-webkit-scrollbar {
    display: none;
}
