html, body {
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

body {
  font-family: Arial, sans-serif;
  background: rgba(235, 222, 206, 0.9);
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  min-width: 100vw;
  box-sizing: border-box;
}

.container {
  width: 100%;
  height: calc(100vh);
  margin: 20px;
  background: rgba(235, 222, 206, 0.9);
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  border: 1px solid #8a6e45;
  box-sizing: border-box;
  overflow-y: auto;
}

.header {
  margin-bottom: 20px;
}

.header h1 {
  margin: 0;
  color: #8B4513;
  font-size: 24px;
}

.header p {
  font-size: 14px;
  color: #4b3b2e;
  margin-top: 10px;
}

.task {
  background: rgba(245, 240, 225, 1);
  padding: 20px;
  border-radius: 10px;
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.2);
  border: 1px solid #8a6e45;
}

select {
  padding: 10px;
  font-size: 16px;
  border-radius: 5px;
  border: 1px solid #8B4513;
  background-color: #fff;
  color: #8B4513;
  width: 100%;
  max-width: 400px;
  margin-bottom: 20px;
  outline: none;
}

select:focus {
  border-color: #5c2d0c;
}

button {
  padding: 10px 20px;
  font-size: 16px;
  background-color: #8B4513;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  margin-left: 10px;
  transition: background-color 0.3s;
}

button:hover {
  background-color: #5c2d0c;
}

.chart-container {
  position: relative;
  height: 60vh;
  width: 100%;
  margin-top: 20px;
}

.stats-container {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
    margin-bottom: 20px;
}

.stat-box {
    background: #E8C392;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid #8B4513;
    flex: 1;
    margin: 0 10px;
}

.stat-box h3 {
    margin: 0 0 10px 0;
    font-size: 14px;
    color: #4b3b2e;
}

.stat-box p {
    margin: 0;
    font-size: 20px;
    font-weight: bold;
    color: #8B4513;
}

/* Autocomplete Tema Uyumu */
.autocomplete-items {
  position: absolute;
  border: 1px solid #8B4513;
  border-bottom: none;
  border-top: none;
  z-index: 99;
  top: 100%;
  left: 0;
  right: 0;
  max-height: 250px;
  overflow-y: auto;
  background-color: #fff;
  border-radius: 0 0 5px 5px;
  width: 250px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
.autocomplete-items div {
  padding: 10px;
  cursor: pointer;
  background-color: #fff;
  border-bottom: 1px solid #8B4513;
  color: #8B4513;
  font-size: 14px;
}
.autocomplete-items div:hover {
  background-color: #8B4513;
  color: #fff;
}
