.alphabet-catalog .accordion {
    background-color: #6F42C1; /* Canlı Mor */
    color: white;
    padding: 10px;
    cursor: pointer;
    border: none;
    outline: none;
    text-align: left;
    margin-bottom: 5px;
    border-radius: 5px;
    font-size: 1.1rem;
}

.container.text-center {
  /*  position: fixed;*/
    margin-top: 60px;
    color: gray;
}

.container.text-center a {
    color: #0066cc; 
    text-decoration: none; 
}

.dream-form textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #6F42C1; /* Canlı Mor */
    border-radius: 4px;
    font-size: 1rem;
    resize: vertical; /* Yükseklik değiştirilebilir */
    transition: border-color 0.3s;
}

    .dream-form textarea:focus {
        border-color: #FFC107; /* Parlak Sarı */
        outline: none;
    }

.dream-form button {
    padding: 12px;
    background-color: #007BFF; /* Vibrant Mavi */
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s;
}

    .dream-form button:hover {
        background-color: #0056b3; /* Daha koyu Mavi */
    }

.dream-form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

header {
    background-color: #007BFF;
    color: white;
    padding: 20px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    margin-top: 20px;
}

    header h1 {
        font-size: 2.5rem;
        font-weight: bold;
    }

.keyword-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px; /* Gap between items */
}

    .keyword-list a {
        padding: 12px 20px; /* Padding for the links */
        background-color: #FFC107; /* Bright Yellow */
        color: white; /* Text color */
        text-decoration: none; /* Remove underline */
        border-radius: 5px; /* Rounded corners */
        transition: background-color 0.3s, transform 0.3s; /* Transition effects */
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Shadow effect */
        flex: 1 1 auto; /* Flexible basis for auto width */
        max-width: 200px; /* Maximum width */
        height: 40px; /* Fixed height */
        overflow: hidden; /* Hide overflow text */
        white-space: nowrap; /* Prevent text wrapping */
        text-overflow: ellipsis; /* Display ellipsis for overflowed text */
        text-align: center; /* Center text */
    }

/* Small screen adjustments */
@media (max-width: 768px) {
    .keyword-list a {
        flex: 1 1 100%; /* Each link takes full width on small screens */
        margin-bottom: 10px; /* Space between items */
    }
} 
 
.panel {
    padding: 0 18px;
    background-color: white;
    display: none;
    overflow: hidden;
}

    .panel a {
        display: block;
        padding: 8px 0;
        text-decoration: none;
        color: #343A40; /* Koyu Gri */
    }

        .panel a:hover {
            text-decoration: underline;
            color: #6F42C1; /* Canlı Mor */
        }

.popular-keywords, .recent-searches, .dream-form, .alphabet-catalog {
    margin: 20px 0;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    width: 100%;
}

    .popular-keywords h2, .recent-searches h2, .dream-form h2, .alphabet-catalog h2 {
        margin-bottom: 10px;
        font-size: 1.5rem;
        color: #007BFF; /* Vibrant Mavi */
    }

.search-bar {
    display: flex; /* Yatay hizalama */
    justify-content: center;
    align-items: center; /* Dikey hizalama */
    margin: 20px 0;
    width: 100%;
}

    .search-bar input {
        flex: 1; /* Input alanı kalan boşluğu alır */
        max-width: 500px; /* Düğme için genişlik bırakır */
        padding: 15px;
        border: 2px solid #6F42C1; /* Canlı Mor */
        border-radius: 4px 0 0 4px; /* Sadece sol köşeleri yuvarlatır */
        font-size: 1rem;
        transition: border-color 0.3s;
    }

        .search-bar input:focus {
            border-color: #FFC107; /* Parlak Sarı */
            outline: none;
        }

.search-btn {
    padding: 15px;
    background-color: #007BFF; /* Vibrant Mavi */
    color: white;
    border: 2px solid #007BFF; /* Input alanının kenarına uyumlu */
    border-radius: 0 4px 4px 0; /* Sadece sağ köşeleri yuvarlatır */
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s, border-color 0.3s;
}

    .search-btn:hover {
        background-color: #0056b3; /* Hover'da daha koyu mavi */
        border-color: #0056b3; /* Hover'da kenar rengini güncelle */
    }
