/* Center Form Elements Properly */
.form-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;  /* Adds space between input and button */
    flex-wrap: wrap;
    margin-top: 20px;
}

/* Ensure input and button are aligned */
.prompt-input {
    width: 70%;
    max-width: 400px;
    padding: 12px;
    font-size: 1rem;
    border: 2px solid #00d4ff;
    border-radius: 30px;
    outline: none;
    background: #222;
    color: white;
    text-align: center;
    box-shadow: 0px 0px 8px #00d4ff;
    transition: all 0.3s ease-in-out;
}

.btn-generate {
    background: linear-gradient(90deg, #00d4ff, #ff00ff);
    border: none;
    padding: 12px 20px;
    border-radius: 30px;
    font-size: 1rem;
    color: white;
    cursor: pointer;
    box-shadow: 0px 0px 10px #00d4ff;
    transition: all 0.3s ease-in-out;
}

.btn-generate:hover {
    box-shadow: 0px 0px 15px #ff00ff;
    transform: scale(1.05);
}
