/* style.css */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f8f8f8;
  width: 100%;
  height: 100%;
}

/* medival font için */
.metamorphous-regular {
  font-family: "Metamorphous", serif;
  font-weight: 400;
  font-style: normal;
}

.likebody {
    display: flex;
    /*margin-top: 60px; /* header'ı çakıştırmamak için */
}

.sidebar.left {
  background: #f4f4f4;
  border-right: 1px solid #ccc;
}

.sidebar button {
  width: 90%;
  padding: 10px;
  margin: 5px;
  font-weight: bold;
}

.navbar {
  position: sticky;
  top: 0;
  background-color: #eee;
  padding: 10px 20px;
  border-bottom: 1px solid #ccc;
  z-index: 1000;
  font-size: 14px;
}

.navbar a {
  text-decoration: none;
  color: #333;
  margin-left: 10px;
}

.navbar a:hover {
  text-decoration: underline;
}

h2 {
  padding: 20px;
  margin: 0;
}

button {
  padding: 6px 12px;
  margin: 10px;
  font-size: 14px;
}

table {
  margin: 20px;
  border-collapse: collapse;
}

td {
  width: 25px;
  height: 25px;
  text-align: center;
  border: 1px solid #ccc;
  font-size: 12px;
  position: relative;
}

.me { background: green; color: white; }
.empty { background: white; }
.ai-2 { background: red; color: white; }
.ai-3 { background: blue; color: white; }
.ai-4 { background: orange; color: white; }
.ai-5 { background: purple; color: white; }
.ai-6 { background: teal; color: white; }


.blocked { background: black; }


/* Merkezde form */
.centered-form {
  max-width: 300px;
  margin: 80px auto;
  background: white;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.centered-form h2 {
  text-align: center;
  margin-bottom: 15px;
}

.centered-form input[type="text"],
.centered-form input[type="password"] {
  width: 100%;
  padding: 8px;
  margin: 8px 0;
  box-sizing: border-box;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.centered-form input[type="submit"] {
  width: 100%;
  background-color: #4CAF50;
  color: white;
  padding: 10px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
}

.centered-form input[type="submit"]:hover {
  background-color: #45a049;
}
