body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: url('background.jpg') no-repeat center center fixed;
    background-size: cover;
    text-align: center;
    color: #fff; /* Yazı rengi beyaz */
}
body div a {
  color: #fff; /* Yazı rengi beyaz */
}

.logo {
    width: 200px;
    display: block;
    margin: 20px auto;
}

.back-home {
    margin: 20px;
    color: #333; /* Koyu gri renk */
}

.back-home a {
    color: #333; /* Koyu gri renk */
    text-decoration: none;
    font-size: 16px;
    font-weight: bold; /* Koyu yazı */
}

.accordion {
    max-width: 600px;
    margin: 20px auto;
}
.slab-market {
    font-size: 24px;
    font-weight: bold; /* Koyu yazı */
    color: #333; /* Koyu gri renk */
    margin: 10px 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.accordion button {
    width: 100%;
    padding: 10px;
    text-align: left;
    font-size: 16px;
    border: none;
    outline: none;
    background: #444;
    color: #fff;
    cursor: pointer;
    margin-bottom: 5px;
    border-radius: 5px;
    transition: background 0.3s;
}

.accordion button:hover {
    background: #666;
}

.accordion-content {
    display: none;
    padding: 10px;
    background: #333;
    color: white;
    border-radius: 5px;
}

.accordion-content a {
    display: block;
    color: #fff;
    text-decoration: none;
    padding: 5px 0;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 sıra yan yana */
    gap: 15px;
    padding: 15px;
    max-width: 1200px;
    margin: auto;
}

.gallery-item {
    background: #222;
    padding: 10px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(255, 255, 255, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.gallery img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.3s;
}

.gallery img:hover {
    transform: scale(1.05);
}

.info-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}

.info-left {
    text-align: left;
}

.image-time {
    color: #fff; /* Yazı rengi beyaz */
    font-size: 14px;
    margin: 0;
}

.code-info {
    color: #fff; /* Yazı rengi beyaz */
    font-size: 14px;
    margin: 5px 0 0 0;
}

.download-button {
    display: inline-block;
    padding: 5px 10px;
    background: #444;
    color: #fff; /* Yazı rengi beyaz */
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s;
    font-size: 14px;
}

.download-button:hover {
    background: #666;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto; /* Kaydırma için */
    background-color: rgba(0, 0, 0, 0.9);
    text-align: center;
}

.modal-content {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1);
    max-width: 90%;
    max-height: 90%;
    transition: transform 0.3s ease;
    cursor: zoom-in;
}

.modal-content.zoomed {
    transform: translate(-50%, -50%) scale(1.5);
    cursor: zoom-in;
}

.modal-content.zoomed-2 {
    transform: translate(-50%, -50%) scale(2);
    cursor: zoom-in;
}

.modal-content.zoomed-3 {
    transform: translate(-50%, -50%) scale(2.5);
    cursor: zoom-in;
}

.modal-content.zoomed-4 {
    transform: translate(-50%, -50%) scale(4);
    cursor: zoom-out;
}

.close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}

.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

/* Arama Kutusu Stili */
.search-container {
    margin: 20px auto;
    max-width: 600px;
    display: flex;
    gap: 10px;
}

.search-container input {
    flex: 1;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    background: #333;
    color: #fff;
}

.search-container button {
    padding: 10px 20px;
    background: #444;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.search-container button:hover {
    background: #666;
}