body {
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #f1f1f1;
}

.search-container {
    text-align: center;
    width: 100%;
    max-width: 700px;
    position: fixed;
    top: 0;
    background-color: #f1f1f1;
    padding: 20px;
    z-index: 10;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

#searchInput {
    width: 97%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
	
}

#result {
    margin-top: 20px; /* Arama kutusu ve logo için yer bırak */
    font-size: 18px;
    text-align: left;
    max-height: calc(100vh - 140px); /* Arama kutusu ve logo yüksekliğini çıkar */
    overflow-y: auto;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 700px;
}

ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

li {
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
    display: flex;
    align-items: center;
}

li:last-child {
    border-bottom: none;
}

.logo {
    width: 70px;
    height: 50px;
    margin-right: 20px;
}

.marka {
    flex: 1;
}

.kategori {
    margin-right: 20px;
}

.neden-button {
    background-color: #f44242;
    color: white;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    border-radius: 4px;
	margin-right: 10px;
}

.boykotedilmiyor-button {
    background-color: #48bd0b;
    color: white;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    border-radius: 4px;
}

.diger-button {
    background-color: #4285f4;
    color: white;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    border-radius: 4px;
	margin-left:10px;
}

.neden-button:hover {
    background-color: #d73838;
}

.boykotedilmiyor-button:hover {
    background-color: #3ba80a;
}

.diger-button:hover {
    background-color: #357ae8;
}

.neden {
    margin-top: 10px;
    background: #f9f9f9;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000; /* Modalın üstte kalmasını sağla */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.4);
    padding-top: 60px;
}

.modal-content {
    background-color: #fefefe;
    margin: 5% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.card-img-top {
    width: 200px;
    display: block;
    margin: 0 auto 10px;
}

/* Mobil cihazlar için logo boyutunu küçültme */
@media screen and (max-width: 768px) {
    .card-img-top {
        width: 150px;
    }

    #searchInput {
        font-size: 14px;
        padding: 8px;
    }

    .neden-button,
    .boykotedilmiyor-button,
    .diger-button {
        padding: 4px 8px;
    }
}
