/* global style things */
html {
    overflow-y: scroll;
}

:root {
    --primary-color: #fff;
    --secondary-color: #1a1a1a;
    --text-color: #ffffff;
    --background-gradient: linear-gradient(to bottom, #333333, #000000);
    --card-background: #2d2d2d;
    --input-background: #333333;
    --hover-color: #3ac162;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--background-gradient);
    color: var(--text-color);
    line-height: 1.6;
    min-height: 100vh;
    opacity: 1;
    transition: opacity 0.5s ease;
}


html.no-scroll {
    overflow: hidden !important;
}

#logo-header {
    box-align: center;
    max-height: 110px;
    margin: 5rem 0px 0px;
}


@media (max-width: 768px) {
    #logo-header {
        max-height: 90px;
        margin-top: 70px;
    }
    .hero .subtitle {
        font-size: 1.2rem !important;
    }
}

@media (max-width: 584px) {
    #logo-header {
        max-height: 66px;
        margin-top: 60px;
    }
    .hero .subtitle {
        font-size: 1rem !important;
    }
}

@media (max-width: 480px) {
    #logo-header {
        max-height: 56px;
        margin-top: 50px;
    }
    .hero .subtitle {
        font-size: 0.85rem !important;
    }
}

@media (max-width: 390px) {
    #logo-header {
        max-height: 44px;
        margin-top: 30px;
    }
    .hero .subtitle {
        font-size: 0.7rem !important;
    }
}

#note-text {
    font-size: 1rem;
}

@media (max-width: 768px) {
    #note-text {
        font-size: 0.6rem;
    }
}

body.loading {
    opacity: 0;
}

/* Navbar */
.navbar {
    background: rgba(0, 0, 0, 0.8);
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.logo img {
    height: 40px;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    margin-left: 2rem;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    background: var(--primary-color);
}

/* Hero Section */
.hero {
    text-align: center;

}

.hero h1 {
    font-size: 4.2rem;
    margin-bottom: 1rem;
    color: var(--text-color);
    padding-bottom: 1.5rem;
}

.hero h1::after {
    content: '';
    bottom: 0;
    width: 150px;
    height: 3px;
    background: var(--primary-color);
}

.hero .subtitle {
    color: #a0a0a0;
    font-size: 1.5rem;
}

/* Chat Container */
.chat-container {
    display: flex;
    gap: 2rem;
    padding: 2rem 5%;
    max-width: 1400px;
    margin: 0 auto;
    justify-content: center;
}

.input-section,
.output-section {
    flex: 1;
    min-width: 45%;
    max-width: 45%;
    background: var(--card-background);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    align-self: flex-start;
    margin: 0;
}

/* Preferences */
.preferences {
    margin-bottom: 2rem;
}

.preference-group {
    margin-bottom: 1.5rem;
}

.preference-group h3 {
    margin-bottom: 1rem;
    color: #888;
    text-align: left;
}

.radio-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.radio-group input[type="radio"] {
    display: none;
}

.radio-group label {
    padding: 0.5rem 1rem;
    background: var(--input-background);
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.radio-group input[type="radio"]:checked + label {
    background: var(--primary-color);
}

/* Input Field */
.input-field {
    position: relative;
    margin-bottom: 1rem;
    min-height: 150px;
    padding-right: 60px;
}

textarea {
    width: 100%;
    min-height: 150px;
    max-height: 300px;
    padding: 1rem;
    background: var(--input-background);
    border: none;
    border-radius: 5px;
    color: var(--text-color);
    resize: vertical;
}

.file-upload {
    margin: 1rem 0;
}

.file-upload label {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--input-background);
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.file-upload label:hover {
    background: var(--primary-color);
}

.file-upload input[type="file"] {
    display: none;
}

#submitBtn {
    position: absolute;
    right: 1rem;
    bottom: 1rem;
    background: var(--primary-color);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

#submitBtn:hover {
    background: var(--hover-color);
    transform: scale(1.1);
}

/* Output Section */
.markdown-output {
    min-height: 300px;
    max-height: 600px;
    padding: 1rem;
    background: var(--input-background);
    border-radius: 5px;
    font-size: 0.9rem;
    overflow-y: auto;
    word-wrap: break-word;
    text-align: left;
}

.markdown-output h1 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.markdown-output h2 {
    font-size: 1.25rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.markdown-output h3 {
    font-size: 1.1rem;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.markdown-output pre {
    background: #1e1e1e;
    border-radius: 5px;
    padding: 1rem;
    margin: 1rem 0;
    overflow-x: auto;
}

.markdown-output code {
    font-family: 'Consolas', 'Monaco', monospace;
    font-size: 0.85rem;
}

.markdown-output .hljs-keyword {
    color: #569cd6;
}

.markdown-output .hljs-string {
    color: #ce9178;
}

.markdown-output .hljs-comment {
    color: #6a9955;
}

.markdown-output .hljs-class {
    color: #4ec9b0;
}

.markdown-output .hljs-function {
    color: #dcdcaa;
}

.markdown-output .hljs-number {
    color: #b5cea8;
}

.markdown-output p {
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

.markdown-output ul, 
.markdown-output ol {
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
}

.markdown-output li {
    margin-bottom: 0.25rem;
}

.markdown-output p code {
    background: #1e1e1e;
    padding: 0.2rem 0.4rem;
    border-radius: 3px;
    font-size: 0.85rem;
}

/* Global Scrollbar Styling */
* {
    scrollbar-width: thin;
    scrollbar-color: rgba(44, 151, 75, 0.3) transparent;
}

/* Webkit Scrollbar (Chrome, Safari, Edge) */
::-webkit-scrollbar {
    width: 4px !important;
}

::-webkit-scrollbar-track {
    background: transparent !important;
}

::-webkit-scrollbar-thumb {
    background: rgba(44, 151, 75, 0.3) !important;
    border-radius: 4px !important;
    border: none !important;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color) !important;
}

::-webkit-scrollbar-button {
    display: none !important;
}

/* Remove any default styles */
::-webkit-scrollbar-corner {
    background: transparent !important;
}

/* Hide scrollbar buttons and track pieces */
::-webkit-scrollbar-button,
::-webkit-scrollbar-track-piece {
    display: none !important;
}

/* Update the file list scrollbar to match */
.file-list::-webkit-scrollbar {
    width: 4px;
}

.file-list::-webkit-scrollbar-track {
    background: transparent;
}

.file-list::-webkit-scrollbar-thumb {
    background: rgba(44, 151, 75, 0.3);
    border-radius: 4px;
}

.file-list::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}

/* Donation Prompt */
.donation-prompt {
    margin-top: 1rem;
    text-align: center;
    color: #888;
}

.donation-prompt a {
    color: var(--primary-color);
    text-decoration: none;
}

/* Tutorial Section */
.tutorial-section {
    padding: 4rem 5%;
    text-align: center;
}

.video-container {
    max-width: 800px;
    margin: 2rem auto;
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Info Sections */
.info-section {
    padding: 4rem 5%;
    max-width: 1200px;
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 15px;
}

.info-block {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-bottom: 6rem;
    justify-content: center;
    padding: 4rem;
}

.info-block:last-child {
    margin-bottom: 0;
}

.info-block.reverse {
    flex-direction: row-reverse;
}

.text-content {
    flex: 0 1 500px;
    max-width: 500px;
}

.text-content h2 {
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.text-content p {
    max-width: 900px;
    line-height: 1.6;
}

.image-content {
    flex: 0 1 400px;
    max-width: 400px;
}

.image-content img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Comment out the Blog Section */
/* Blog Section */
/*
.blog-section {
    padding: 4rem 5%;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.blog-card {
    background: var(--card-background);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-card h3,
.blog-card p {
    padding: 1rem;
}
*/

/* Enhanced footer styles */
footer {
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem 0 1rem 0;
    margin-top: 4rem;
    border-top: 1px solid rgba(255, 20, 147, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-section {
    padding: 0 1rem;
}

.footer-section h3 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    position: relative;
    padding-bottom: 0.5rem;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.footer-section h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: #149eff;
    opacity: 0.8;
}

.footer-section p {
    color: #636e72;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: #636e72;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ff1493;
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: #636e72;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 20, 147, 0.1);
    color: #636e72;
    font-size: 0.9rem;
}

/* Responsive footer */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1.5fr 1fr 1fr;
    }
}

/* @media (max-width: 768px) {
    #copyright-text {
        padding: 0 2rem;
    }
}*/

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .footer-section {
        padding: 0;
    }

    .footer-section h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .social-links {
        justify-content: center;
    }

    footer {
        padding: 2rem 0 1rem 0;
    }
}

@media (max-width: 480px) {
    .footer-content {
        padding: 0 1rem;
    }
}

/* About Page */
.about-container {
    padding: 4rem 5%;
}

.about-content {
    display: flex;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
}

.about-text {
    flex: 1;
}

/* Suggest Features Page */
.suggest-container {
    padding: 4rem 5%;
}

.suggest-content {
    max-width: 800px;
    margin: 0 auto;
}

.suggestion-form {
    margin-top: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    background: var(--input-background);
    border: 1px solid #444;
    border-radius: 5px;
    color: var(--text-color);
}

.submit-btn {
    background: var(--primary-color);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: var(--hover-color);
}

/* Mobile Responsiveness */
@media (max-width: 855px) {
    /* Navbar */
    .navbar {
        padding: 1rem;
    }

    .logo img {
        height: 32px;
    }

    .nav-links {
        display: flex;
        gap: 0.5rem;
    }

    .nav-links a {
        margin-left: 0;
        padding: 0.4rem 0.6rem;
        font-size: 0.9rem;
    }

    /* Hero Section */


    .hero h1 {
        font-size: 2.5rem;
    }

    .hero .subtitle {
        font-size: 1.2rem;
    }

    /* Chat Container */
    .chat-container {
        flex-direction: column;
        padding: 1rem;
        gap: 1rem;
    }

    .input-section,
    .output-section {
        min-width: 100%;
        max-width: 100%;
        padding: 1rem;
        margin-top: 30px;
    }

    .output-section {
        margin-top: 25px;
    }

    /* Preferences */
    .preference-group h3 {
        font-size: 1rem;
        text-align: left;
    }

    .radio-group {
        gap: 0.5rem;
    }

    .radio-group label {
        padding: 0.4rem 0.8rem;
        font-size: 0.9rem;
    }

    /* Input Field */
    .input-field {
        padding-right: 0;
    }

    textarea {
        min-height: 120px;
        font-size: 0.9rem;
    }

    #submitBtn {
        position: relative;
        right: 0;
        bottom: 0;
        width: 100%;
        border-radius: 5px;
        margin-top: 1rem;
        height: 36px;
    }

    /* File Upload */
    .file-upload label {
        width: 100%;
        text-align: center;
    }

    .file-list {
        max-height: 150px;
    }

    /* Info Section */
    .info-block {
        flex-direction: column;
        padding: 1rem;
    }

    .info-block .image-content,
    .info-block .text-content {
        width: 100%;
    }

    .info-block h2 {
        font-size: 1.5rem;
    }

    /* Footer */
    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-section {
        width: 100%;
    }

    .social-links {
        justify-content: center;
    }
}

/* Small phones */
@media (max-width: 480px) {
    .nav-links a {
        font-size: 0.8rem;
        padding: 0.3rem 0.5rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .preference-group {
        margin-bottom: 1rem;
    }

    .radio-group {
        flex-direction: column;
        gap: 0.3rem;
    }

    .radio-group label {
        width: 100%;
        text-align: center;
    }
}

/* Ensure proper heading hierarchy visibility */
h1, h2, h3, h4, h5, h6 {
    color: var(--text-color);
    margin-bottom: 1rem;
}

/* Improve text contrast for accessibility */
.hero .subtitle {
    color: #a0a0a0;  /* Lighter than before for better contrast */
    font-size: 1.5rem;
    margin-bottom: 3rem;
}

/* Add focus styles for accessibility */
a:focus,
button:focus,
input:focus,
textarea:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Add aria-label styles */
[aria-label] {
    cursor: help;
}

/* Improve link accessibility */
a {
    text-decoration: underline;
    text-underline-offset: 2px;
}

.nav-links a {
    text-decoration: none; /* Override for navigation links */
}

/* Loading Animation */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--background-gradient);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}

.loading-overlay.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader {
    text-align: center;
}

.spinner {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    border: 5px solid var(--primary-color);
    border-top: 5px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.loader h2 {
    color: var(--text-color);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.loader p {
    color: #a0a0a0;
    font-size: 1rem;
}

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

/* Add these to your existing CSS */
@keyframes typing {
    from { opacity: 0; }
    to { opacity: 1; }
}

.typing-animation {
    animation: typing 10ms linear;
}

.cursor {
    display: inline-block;
    width: 2px;
    height: 1em;
    background: var(--text-color);
    margin-left: 2px;
    animation: blink 1s infinite;
}

@keyframes blink {
    50% { opacity: 0; }
}

/* Add these animation styles */
@keyframes fadeInLine {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.line-animation {
    opacity: 0;
    animation: fadeInLine 0.5s ease-out forwards;
}

.markdown-output > * {
    opacity: 0;
}

/* File Upload Styling */
.file-list {
    margin: 1rem 0;
    background: var(--input-background);
    border-radius: 5px;
    padding: 0.5rem;
    max-height: 200px;
    overflow-y: auto;
}

.file-item {
    display: flex;
    align-items: center;
    padding: 0.5rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 4px;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.file-item:last-child {
    margin-bottom: 0;
}

.file-item i {
    margin-right: 0.5rem;
    color: var(--primary-color);
}

.file-item span {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.remove-file {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    color: #ff4444;
    cursor: pointer;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    transition: all 0.2s ease;
    margin-left: 8px;
}

.remove-file:hover {
    background: rgba(255, 68, 68, 0.2);
    transform: scale(1.1);
}

.file-item .fa-file-code {
    color: #569cd6;
}

.file-item .fa-file-image {
    color: #4ec9b0;
}

/* Output Title */
.output-title {
    font-size: 1.2rem;
    color: #888;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Add these tooltip styles */
.input-field {
    position: relative;
}

.tooltip {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 68, 68, 0.9);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-size: 0.9rem;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    white-space: nowrap;
    z-index: 100;
}

.tooltip::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid rgba(255, 68, 68, 0.9);
}

.tooltip.show {
    opacity: 1;
}

/* Feedback Section Styling */
.feedback-section {
    margin-top: 2rem;
    text-align: center;
}

.feedback-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 1rem 0;
}

.feedback-question {
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.feedback-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.feedback-btn {
    background: var(--input-background);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-color);
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feedback-btn:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.feedback-btn i {
    font-size: 0.9rem;
}

.feedback-thanks {
    color: var(--primary-color);
    font-size: 0.9rem;
    animation: fadeIn 0.3s ease-out;
}

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

/* Update Feedback Response Styling */
.feedback-response {
    animation: fadeIn 0.3s ease-out;
}

.feedback-thanks {
    color: var(--primary-color);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.feedback-cta {
    font-size: 0.85rem;
    color: #888;
    margin-top: 0.5rem;
}

.suggest-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    text-decoration: none;
    padding: 0.4rem 1rem;
    border-radius: 4px;
    transition: all 0.2s ease;
    margin-top: 0.5rem;
}

.suggest-link:hover {
    background: rgba(44, 151, 75, 0.1);
    transform: translateY(-1px);
}

.suggest-link i {
    font-size: 0.9rem;
}

/* Suggestion Form Response Messages */
.response-message {
    margin-top: 1rem;
    animation: fadeIn 0.3s ease-out;
}

.message {
    padding: 1rem;
    border-radius: 5px;
    text-align: center;
}

.message.success {
    background: rgba(44, 151, 75, 0.1);
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}

.message.error {
    background: rgba(255, 68, 68, 0.1);
    border: 1px solid #ff4444;
    color: #ff4444;
}

.submit-btn .fa-spinner {
    margin-right: 0.5rem;
}

/* Thank You Message Styling */
.thank-you-message {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.thank-you-message.show {
    opacity: 1;
    visibility: visible;
}

.thank-you-content {
    background: var(--card-background);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.thank-you-message.show .thank-you-content {
    transform: translateY(0);
}

.thank-you-content i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.thank-you-content h2 {
    margin-bottom: 1rem;
    color: var(--text-color);
}

.thank-you-content p {
    color: #888;
}

/* File upload hint */
.file-hint {
    display: block;
    color: #888;
    font-size: 0.8rem;
    margin-top: 0.25rem;
}

/* Update file item styling */
.file-item {
    display: flex;
    align-items: center;
    padding: 0.5rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 4px;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.file-item .fa-file-code {
    color: #569cd6;
}

.file-item .fa-file-image {
    color: #4ec9b0;
} 