body {
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.container {
    text-align: center;
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    width: 100%;
}

.logo {
    width: 100%; /* Logoyu responsive yapar */
    max-width: 540px; /* Masaüstünde maksimum genişlik */
    height: auto; /* Yükseklik, genişlik oranını korur */
    margin-bottom: 20px;
}

table {
    margin: 20px auto;
    text-align: left;
    width: 100%;
}

table td:first-child {
    width: 30%; /* Sol kısım için genişlik ayarı */
}

td i {
    margin-right: 8px;
}

td {
    vertical-align: top; /* Verilerin üstten hizalanması */
}

.copy-icon {
    color: #808080; /* Kopyalama ikonu gri renk */
    cursor: pointer;
    float: right; /* İcon sağa yaslı */
    margin-left: 10px;
}

.copy-icon:hover {
    color: #555; /* Üzerine gelindiğinde daha koyu gri */
}

a {
    text-decoration: none; /* Link altı çizgisini kaldırma */
    color: #007bff;
}

a:hover {
    color: #0056b3; /* Link üzerine gelince renk değişimi */
}

.whatsapp-btn {
    background-color: #25D366;
    color: white;
    font-size: 18px;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    margin-top: 20px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.whatsapp-btn:hover {
    background-color: #1ebe55;
}

.social-icons {
    margin-top: 20px;
}

.social-icons a {
    margin: 0 10px;
    font-size: 24px;
    color: #555;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #007bff;
}

.footer-link {
    margin-top: 20px;
}

.footer-link a {
    text-decoration: none;
    color: #555;
    font-weight: bold;
    transition: color 0.3s;
}

.footer-link a:hover {
    color: #007bff;
}

@media (max-width: 768px) {
    .logo {
        max-width: 100%; /* Mobilde tam genişlik */
    }
}
