/* Genel stil ayarları */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

/* Navbar */
.navbar {
    background-color: white;
    padding: 15px 20px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Konteyner */
.container {
    max-width: 1200px;
    margin: 20px auto;
    padding: 0 20px;
}

/* Arama ve filtreleme alanı */
.search-filter {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Arama çubuğu */
.search-container {
    position: relative;
    width: 300px;
}

.search-container input {
    width: 100%;
    padding: 10px 40px 10px 15px; /* Sağda ikon için boşluk */
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    outline: none;
    transition: border-color 0.3s ease;
    background-color: white;
}

/* Büyüteç ikonu */
.search-container i {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #777;
    font-size: 16px;
}

/* Filtre dropdown */
#region-filter {
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: white;
    cursor: pointer;
}

.countries-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px;

}

.child_countries {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
    text-align: center;
    flex-basis: calc(25% - 20px); /* 4 sütun için %25 */
    max-width: calc(25% - 20px);
    
}



.child_countries:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.child_img img {
    width: 100%;
    height:250px;
    border-radius: 8px;
    margin-bottom: 10px;
}

.detail {
    margin-top: 10px;
}

.detail p {
    font-size: 18px;
    font-weight: 600;
    margin: 10px 0;
    color: #333;
}

.info p {
    font-size: 14px;
    color: #555;
    margin: 5px 0;
}

