/* AIFLYERPRO-style title (logo-like) */
.aiflyerpro-title {
    color: #202124;
    font-size: 3.5rem;
    font-weight: bold;
     margin-bottom: 2rem;
}

/* AI span styling for logo (larger version) */
.aiflyerpro-title span {
    background: #e76a2b;
    color: #fff;
    border-radius: 4px;
    padding: 8px 12px;
    margin-right: 8px;
}

/* Main create page container */
.create-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

/* Form container */
.create-form {
    width: 90%;
}

/* Search input wrapper */
.search-input-group {
    position: relative;
    margin-bottom: 1rem;
}

/* Search icon positioning */
.search-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #e76a2b;
    font-size: 16px;
}

/* AIFLYERPRO search textarea */
.search-textarea {
    width: 100%;
    padding: 12px 20px 12px 50px;
    border: 1px solid #dadce0;
    border-radius: 24px;
    outline: none;
    background: #f8f9fa;
    font-size: 16px;
    resize: none;
    overflow: hidden;
    line-height: 1.5;
    font-family: Arial, sans-serif;
}

/* Focus effect on textarea */
.search-textarea:focus {
    border-color: #e76a2b;
    box-shadow: 0 1px 6px rgba(32, 33, 36, 0.28);
}

/* Buttons container */
.buttons-container {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

@media (min-width: 768px) {
    .buttons-container {
        flex-direction: row;
        gap: 0.5rem;
        justify-content: center;
    }
}

/* Primary create button */
.create-btn-primary {
    background: #f25c05;
    color: white;
    border: none;
    border-radius: 4px;
    padding: 8px 20px;
    cursor: pointer;
    font-weight: bold;
    font-size: 14px;
    width: 100%;
    min-width: 20vw;
    transition: background-color 0.2s;
}

.create-btn-primary:hover {
    background: #d84d00;
}

/* Secondary create button */
.create-btn-secondary {
    background: none;
    color: #f25c05;
    border: 1px solid #f25c05;
    border-radius: 4px;
    padding: 8px 20px;
    cursor: pointer;
    font-weight: bold;
    font-size: 14px;
    width: 100%;
    min-width: 20vw;
    transition: background-color 0.2s, border-color 0.2s;
}

.create-btn-secondary:hover {
    background: #f25c05;
    color: white;
    border-color: #f25c05;
}
