/* Navbar stilleri */
.navbar {
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.navbar-brand img {
    max-height: 40px;
    width: auto;
}

.search-form {
    width: 100%;
    max-width: 500px;
}

/* Dropdown menü stilleri */
.dropdown-menu {
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.dropdown-item:hover {
    background-color: #f8f9fa;
}

/* Buton stilleri */
.btn-primary {
    padding: 8px 20px;
    border-radius: 6px;
}

/* Modal stilleri */
.modal-content {
    border-radius: 12px;
    border: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.modal-header {
    border-bottom: 1px solid #eee;
    padding: 1.5rem;
}

.modal-body {
    padding: 1.5rem;
}

/* Modal arka plan karartma */
.modal-backdrop {
    background-color: #000;
}

.modal-backdrop.show {
    opacity: 0.7;
}

.modal-open-dark {
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.7);
}

/* Responsive düzenlemeler */
@media (max-width: 992px) {
    .navbar-nav {
        margin-top: 10px;
    }
    
    .search-form {
        margin: 10px 0;
    }
} 