/* Desktop arama ikonu - menünün en sağına */
.extrarenkbul-icon {
    margin-left: auto;
    padding: 15px 15px;
    cursor: pointer;
    font-size: 1rem;
    color: white !important;
    transition: color 0.2s;
}
.extrarenkbul-icon:hover {
    background-color: var(--tema-mavi) !important;
}

/* Overlay */
.extrarenkbul-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}
.extrarenkbul-overlay.active {
    display: flex;
}

/* Kapatma butonu */
.extrarenkbul-close {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 2rem;
    color: #fff;
    cursor: pointer;
    transition: opacity 0.2s;
}
.extrarenkbul-close:hover {
    opacity: 0.7;
}

/* Arama input */
.extrarenkbul-content {
    width: 90%;
    max-width: 600px;
}
.extrarenkbul-content input {
    width: 100%;
    padding: 15px 20px;
    font-size: 1.4rem;
    border: none;
    border-bottom: 2px solid #fff;
    background: transparent;
    color: #fff;
    outline: none;
    text-align: center;
}
.extrarenkbul-content input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}
