/* Quick Prompt Bar Styles - Compact Version */
.quick-input-wrapper {
    display: flex;
    align-items: center;
    width: 94%;
    margin-left: 1.5%;
    margin-right: 2.5%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 6px 6px 6px 20px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    gap: 12px;
}

/* Add new icon styles */
.quick-input-icon {
    width: 40px;
    height: 40px;
    opacity: 0.7;
    flex-shrink: 0;
    /* Prevent icon from shrinking */
    transition: opacity 0.3s ease;
}

.quick-input-wrapper:focus-within .quick-input-icon {
    opacity: 1;
    /* Make icon more visible when input is focused */
}

.quick-prompt-input {
    flex: 1;
    background: none;
    border: none;
    color: white;
    font-size: 1rem;
    padding: 12px 0;
    outline: none;
    placeholder-color: rgba(255, 255, 255, 0.5);
    margin-left: 0;
    /* Remove any default margin */
}

.quick-prompt-section {
    padding: 5px 40px;
    overflow: hidden;
    max-width: 1400px;
    margin: 0 auto;
}

.quick-prompt-container {
    position: relative;
    z-index: 2;
}

.quick-prompt-content {
    text-align: center;
}

/* ✅ Removed title and subtitle styles */

/* Quick Prompt Form */
.quick-prompt-form {
    margin-bottom: 10px;
    /* ✅ Reduced margin */
}

.quick-input-wrapper:focus-within {
    /* border-color: #8FC31F; */
    /* box-shadow: #8FC31F; */
    transform: translateY(-2px);
}

.quick-prompt-input {
    flex: 1;
    background: none;
    border: none;
    color: white;
    font-size: 1rem;
    padding: 12px 0;
    outline: none;
    placeholder-color: rgba(255, 255, 255, 0.5);
}

.quick-prompt-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.quick-prompt-btn {
    background: #8FC31F;
    border: none;
    border-radius: 40px;
    padding: 12px 24px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.quick-prompt-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 2px #8FC31F;
}

.quick-prompt-btn svg {
    transition: transform 0.3s ease;
}

.quick-prompt-btn:hover svg {
    transform: translateX(2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .quick-prompt-section {
        padding: 30px 15px;
        /* ✅ Reduced mobile padding */
    }

    .quick-input-wrapper {
        flex-direction: column;
        border-radius: 20px;
        padding: 15px;
        gap: 15px;
    }

    .quick-prompt-input {
        text-align: center;
        padding: 8px 0;
    }

    .quick-prompt-btn {
        width: 100%;
        justify-content: center;
        border-radius: 15px;
    }

        .quick-input-icon {
            display: none;
            /* Option 1: Hide completely on mobile */
            /* OR */
            /* width: 16px; height: 16px; */
            /* Option 2: Make smaller */
        }
}

@media (max-width: 480px) {
    .quick-prompt-section {
        padding: 25px 15px;
    }

        .quick-input-icon {
            display: none;
            /* Option 1: Hide completely on mobile */
            /* OR */
            /* width: 16px; height: 16px; */
            /* Option 2: Make smaller */
        }
}