#okan-rehber-container, 
#okan-rehber-container * {
    font-family: Arial, Helvetica, sans-serif !important;
    color: #222222 !important; 
    box-sizing: border-box;
}

#okan-rehber-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    background: #ffffff !important;
    padding: 25px;
    border-radius: 30px !important;
    border: 1px solid #e0e0e0;
}

.rehber-sidebar {
    flex: 1;
    min-width: 280px;
    background: #f8f9fa !important;
    padding: 25px;
    border-radius: 25px !important;
}

.rehber-content {
    flex: 3;
    min-width: 320px;
}

.grid-layout {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.uni-card {
    background: #ffffff !important;
    border: 2px solid #eeeeee !important;
    padding: 20px;
    border-radius: 20px !important;
    transition: transform 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
}

.uni-card:hover { 
    transform: translateY(-5px); 
    border-color: #ffd700 !important; 
}

/* YENİ: En İyi Eşleşme Vurgusu */
.best-match-card {
    border: 2px solid #4CAF50 !important;
    background: #f9fff9 !important;
}
.best-match-badge {
    background: #4CAF50 !important;
    color: #fff !important;
    padding: 5px 10px;
    border-radius: 10px;
    font-size: 0.8em;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 10px;
}

.rounded-input {
    width: 100%;
    padding: 12px;
    border-radius: 20px !important;
    border: 1px solid #cccccc !important;
    background: #ffffff !important;
    margin-top: 5px;
    outline: none;
    cursor: pointer;
}

.custom-dropdown {
    background: #ffffff !important;
    border: 1px solid #cccccc !important;
    padding: 12px;
    border-radius: 20px !important;
    margin-top: 5px;
    cursor: pointer;
}

.custom-dropdown summary {
    font-weight: bold;
    outline: none;
    list-style: none;
    display: flex;
    justify-content: space-between;
}

.custom-dropdown summary::-webkit-details-marker { display: none; }

.dropdown-content {
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    border-top: 1px solid #eeeeee;
    padding-top: 15px;
}

.dropdown-content label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.badge {
    padding: 6px 14px;
    border-radius: 20px !important;
    font-size: 0.85em;
    font-weight: bold;
    color: #ffffff !important; 
    display: inline-block;
    margin-right: 5px;
    margin-bottom: 5px;
    border: none !important;
}

.badge-devlet { background: #4CAF50 !important; }
.badge-ozel { background: #FF9800 !important; } 
.badge-tech { background: #2196F3 !important; }

/* YENİ: Kampüs Detayları Listesi */
.uni-details {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px dashed #ddd;
    font-size: 0.85em;
    color: #555 !important;
    line-height: 1.6;
}

@media (max-width: 768px) {
    #okan-rehber-container { flex-direction: column; }
    .rehber-sidebar { width: 100%; }
}