/* Container für Login */
.gta-login-form {
  max-width: 400px;
  margin: 50px auto;
  padding: 2rem;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  font-family: Arial, sans-serif;
}

.gta-login-form h2 {
  margin-bottom: 1.5rem;
  text-align: center;
  font-size: 1.5rem;
  color: #333;
}

/* Eingabefelder */
.gta-login-form input[type="text"],
.gta-login-form input[type="password"] {
  width: 100%;
  padding: 0.7rem;
  margin-bottom: 1rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
}

.gta-login-form label {
  font-weight: bold;
  font-size: 0.9rem;
  color: #555;
}

/* Button */
.gta-login-form input[type="submit"] {
  display: block;
  width: 100%;
  padding: 0.8rem;
  background: #0073aa;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

.gta-login-form input[type="submit"]:hover {
  background: #005c87;
}

/* Dashboard-Bereich */
.gta-dashboard {
  max-width: 1200px;
  margin: 30px auto;
  border: 1px solid #eee;
  border-radius: 12px;
  font-family: Arial, sans-serif;
}

.gta-dashboard h2 {
  margin-bottom: 1rem;
  font-size: 1.6rem;
  border-bottom: 2px solid #0073aa;
  padding-bottom: 0.5rem;
}

.gta-dashboard ul {
  list-style: none;
  padding: 0;
}

.gta-dashboard ul li {
  margin: 0.5rem 0;
}

.gta-dashboard ul li a {
  text-decoration: none;
  color: #0073aa;
  font-weight: bold;
}

.gta-dashboard ul li a:hover {
  text-decoration: underline;
}

/* Logout-Link */
.gta-dashboard a.logout-link {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.6rem 1rem;
  background: #d63638;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
}

.gta-dashboard a.logout-link:hover {
  background: #a30002;
}

.gta-menu {display:flex; gap:1em; background: #275169; padding:10px;}
.gta-menu a {color: white;}
.gta-menu a:hover {text-decoration:underline;}
.gta-filter {font-size:12px;}
.gta-table {width:100%;}
.gta-table th {border-bottom:1px solid black; text-align:left}



/* Basis */
.gta-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1em;
}
.gta-table th, 
.gta-table td {
  border: 1px solid #ccc;
  padding: 8px;
  text-align: left;
}
.gta-table thead {
  background: #f5f5f5;
}
.gta-table tr.abgerechnet {
  background: #f9f9f9;
  color: #666;
}

/* Mobile Ansicht */
@media (max-width: 768px) {
  .gta-table,
  .gta-table thead,
  .gta-table tbody,
  .gta-table th,
  .gta-table td,
  .gta-table tr {
    display: block;
    width: 100%;
  }

  .gta-table thead {
    display: none; /* Kopf ausblenden */
  }

  .gta-table tr {
    margin-bottom: 1em;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 8px;
    background: #fff;
  }

  .gta-table td {
    border: none;
    padding: 6px 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .gta-table td::before {
    content: attr(data-label);
    font-weight: bold;
    margin-right: 10px;
    flex-shrink: 0;
  }
}




.gta-form {
  max-width: 500px;
  margin: 20px auto;
  padding: 15px;
  background: #fafafa;
  border: 1px solid #ddd;
  border-radius: 6px;
}

.gta-form-group {
  margin-bottom: 15px;
}

.gta-form-group label {
  display: block;
  font-weight: bold;
  margin-bottom: 5px;
}

.gta-form-group input,
.gta-form-group textarea {
  width: 100%;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 14px;
  box-sizing: border-box;
}

.gta-form-group input:focus,
.gta-form-group textarea:focus {
  border-color: #0073aa;
  outline: none;
}

.gta-static {
  padding: 8px;
  background: #f5f5f5;
  border: 1px solid #ddd;
  border-radius: 4px;
}

.gta-btn {
  background: #0073aa;
  color: #fff;
  border: none;
  padding: 10px 15px;
  font-size: 14px;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s;
}

.gta-btn:hover {
  background: #005d8c;
}

