.tmo-container {
  font-family: "Inter", sans-serif;
  margin: 20px;
}

.tmo-day {
  border: 1px solid #ddd;
  border-radius: 10px;
  margin: 10px 0;
  padding: 10px;
  background: #f9f9f9;
}

.tmo-day h3 {
  background: #0073aa;
  color: #fff;
  padding: 8px;
  border-radius: 6px;
}

.tmo-slot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  margin: 5px 0;
  padding: 8px;
  border-radius: 6px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.tmo-slot input[type="checkbox"] {
  transform: scale(1.3);
}

#tmo-player-container {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

#tmo-availability-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

#tmo-availability-table th, #tmo-availability-table td {
    border: 1px solid #ccc;
    padding: 8px;
    text-align: center;
}

.tmo-actions {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
}

.tmo-actions button {
    background: #0073aa;
    color: #fff;
    padding: 10px 15px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}

.tmo-actions button:hover {
    background: #005a87;
}

.tmo-login-form,
.tmo-player-view {
    max-width: 400px;
    margin: 40px auto;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    background: #f7faff;
    text-align: center;
}

.tmo-player-card {
    background: #fff;
    border-radius: 10px;
    padding: 15px;
    margin: 15px 0;
    border: 1px solid #e1e1e1;
}

.tmo-login-form input {
    width: 90%;
    margin: 8px 0;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #ccc;
}

.tmo-login-form button,
#tmo-logout-button {
    background-color: #0073aa;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 10px 20px;
    cursor: pointer;
}

.tmo-login-form button:hover,
#tmo-logout-button:hover {
    background-color: #005f8d;
}