/* Temel Sıfırlama ve Fontlar */
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background-color: #f0f2f5;
    color: #333;
    line-height: 1.6;
}

/* Kapsayıcı: Mobilde kenarlardan pay bırakır */
.container {
    width: 95%;
    max-width: 1100px;
    margin: 20px auto;
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

/* Modern Navbar: Mobilde alt alta geçer */
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    background: #2c3e50;
    color: white;
}
.nav-links { display: flex; gap: 15px; align-items: center; }
.nav-links a { color: #ecf0f1; text-decoration: none; font-size: 14px; font-weight: 500; }
.btn-reg { background: #2ecc71; padding: 6px 12px; border-radius: 5px; color: white !important; }

@media (max-width: 600px) {
    .nav-container { flex-direction: column; text-align: center; gap: 10px; }
    .nav-links { flex-wrap: wrap; justify-content: center; }
}

/* Tablo Düzeni: Mobilde kaydırılabilir */
.table-responsive { width: 100%; overflow-x: auto; margin-top: 20px; }
table { width: 100%; border-collapse: collapse; min-width: 500px; }
th, td { padding: 15px; text-align: left; border-bottom: 1px solid #eee; }
th { background-color: #3498db; color: white; text-transform: uppercase; font-size: 13px; }
tr:hover { background-color: #f9f9f9; }

/* Formlar (Login/Kayıt) */
.form-box { max-width: 400px; margin: 50px auto; padding: 30px; background: white; border-radius: 10px; box-shadow: 0 5px 20px rgba(0,0,0,0.1); }
input, textarea {
    width: 100%;
    padding: 12px;
    margin: 8px 0;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px; /* Mobilde zoom yapmaması için */
}
button {
    width: 100%;
    padding: 12px;
    background: #27ae60;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    font-size: 16px;
}
button:hover { background: #219150; }

/* Hit ve Etkileşim Renkleri */
.hit-in { color: #27ae60; font-weight: bold; }
.hit-out { color: #2980b9; font-weight: bold; }
.btn-like { text-decoration: none; font-size: 18px; display: inline-block; margin-bottom: 5px; }
