.watermark,
.watermark *,
[class*="watermark"],
[id*="watermark"] {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    position: absolute !important;
    left: -9999px !important;
    top: -9999px !important;
    width: 0 !important;
    height: 0 !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    pointer-events: none !important;
}

/* Signup Section */
#custom-signup-section {
    margin-top: 1.5rem;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

#custom-signup-section .signup-text {
    text-align: center;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

#custom-signup-section .signup-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border-radius: 12px;
    font-size: 0.875rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid rgba(139, 92, 246, 0.3);
    background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 100%);
    color: white;
    height: 2.75rem;
    padding: 0 1.5rem;
    min-width: 200px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.2);
}

#custom-signup-section .signup-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
    background: linear-gradient(135deg, #9333ea 0%, #c084fc 100%);
}

.logo {
    margin-bottom: 5rem !important; /* Increase from the current mb-2 */
}

/* Responsive */
@media (max-width: 768px) {
    #language-switcher-btn {
        height: 36px !important;
        padding: 8px 12px !important;
    }

    #custom-signup-section .signup-button {
        min-width: 180px;
        font-size: 0.8rem;
        height: 2.5rem;
    }
}

/* STARTER SCREEN STYLING*/

/* ChatGPT-style layout adjustments */
.welcome-screen {
    max-width: 768px !important; /* Constrain overall width like ChatGPT */
    margin: 0 auto !important;
}

/* Reorder the welcome screen layout */
#welcome-screen {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 2rem !important;
}

/* Move starters above message composer */
#welcome-screen img.logo {
    order: 1 !important;
    margin-bottom: 1rem !important;
}

#starters {
    order: 2 !important;
    margin-bottom: 1.5rem !important;
}

#message-composer {
    order: 3 !important;
    max-width: 100% !important;
}

/* ChatGPT-style message composer */
#message-composer {
    max-width: 100% !important;
    margin: 0 auto !important;
}

/* Professional starters styling matching dropdown menu */
#starters {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
    gap: 1rem !important;
    justify-content: center !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    width: 100% !important;
}

#starters button {
    /* Match dropdown menu styling */
    background: hsl(var(--popover)) !important;
    border: 1px solid hsl(var(--border)) !important;
    color: hsl(var(--popover-foreground)) !important;

    /* Professional layout */
    display: flex !important;
    align-items: center !important;
    gap: 0.75rem !important;
    padding: 1rem 1.25rem !important;
    border-radius: 0.8rem !important; /* rounded-md */
    font-size: 0.875rem !important;
    font-weight: 500 !important;
    line-height: 1.4 !important;
    text-align: left !important;
    justify-content: flex-start !important;

    /* Professional effects */
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important; /* shadow-md */
    transition: all 0.2s ease !important;
    cursor: pointer !important;

    /* Size constraints */
    min-height: 80px !important;
    width: 100% !important;
    max-width: 400px !important;
}

#starters button:hover,
#starters button:focus {
    /* Match dropdown menu hover styling */
    background: hsl(var(--accent)) !important;
    color: hsl(var(--accent-foreground)) !important;

    /* Enhanced hover effects */
    transform: translateY(-2px) !important;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important;
    border-color: hsl(var(--accent)) !important;
}

#starters button .flex {
    display: flex !important;
    align-items: center !important;
    gap: 0.75rem !important;
    width: 100% !important;

}

#starters button p {
    color: inherit !important;
    font-weight: 500 !important;
    margin: 0 !important;
    font-size: 0.875rem !important;
    line-height: 1.4 !important;
    text-align: left !important;
    flex: 1 !important;
}

#starters button img {
    width: 24px !important;
    height: 24px !important;
    border-radius: 0.25rem !important;
    flex-shrink: 0 !important;
    opacity: 0.8 !important;
}

#starters button:hover img {
    opacity: 1 !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .welcome-screen {
        max-width: 100% !important;
        padding: 0 1rem !important;
    }

    #starters {
        grid-template-columns: 1fr !important;
        gap: 0.75rem !important;
        max-width: 500px !important;
    }

    #starters button {
        min-height: 70px !important;
        padding: 0.875rem 1rem !important;
    }
}

@media (max-width: 480px) {
    #starters {
        max-width: 100% !important;
    }

    #starters button {
        min-height: 65px !important;
        padding: 0.75rem 0.875rem !important;
        font-size: 0.8rem !important;
    }

    #starters button img {
        width: 20px !important;
        height: 20px !important;
    }
}

/* Ensure proper spacing on smaller screens */
@media (min-width: 769px) and (max-width: 1024px) {
    #starters {
        grid-template-columns: repeat(2, 1fr) !important;
        max-width: 600px !important;
    }
}

@media (min-width: 1025px) {
    #starters {
        grid-template-columns: repeat(2, 1fr) !important;
        max-width: 700px !important;
    }
}