/* Paleta a písmo odpovídají https://obristvi.cz (Poppins, modrá #3A519B / #143A73, žlutý akcent #FFE940) */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

* {
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', Arial, sans-serif;
    background-color: #f1fafe;
    padding: 20px;
    color: #4d4d4d;
}

a {
    color: #3a519b;
    text-decoration: none;
}

table {
    border: 0px solid;
    table-layout: fixed;
    border-collapse: collapse;
}

table td {
    text-align: left;
    padding: 13px;
    vertical-align: top;
}

h1 {
  color: #ffffff;
  background-color: #3a519b;
  font-size: 24px;
  margin-bottom: 20px;
  padding: 10px 20px;
  text-align: center;
}

h2 {
  color: #ffffff;
  background-color: #143a73;
  font-size: 18px;
  margin-top: 20px;
  margin-bottom: 10px;
  margin-left: 0px;
  margin-right: 0px;
  padding: 10px 10px;
  text-align: center;
}

.link-container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

textarea {
    width: 100%;
    padding: 10px;
    font-family: 'Poppins', Arial, sans-serif;
    font-size: 14px;
    border: 1px solid #3a519b;
    border-radius: 4px;
    resize: vertical;
}

textarea:focus {
    border: 1px solid #143a73;
    box-shadow: 0 0 5px rgba(58, 81, 155, 0.5);
}

textarea:disabled {
    background-color: #f2f2f2;
    cursor: not-allowed;
}

.submit-button {
  background-color: #ffe940;
  color: #2a2a2a;
  font-weight: 600;
  padding: 12px 22px;
  font-size: 20px;
  border: none;
  border-radius: 4px;
  transition: background-color 0.3s ease, transform 0.2s ease;
  margin: 20px;
}

.submit-button:hover {
  background-color: #3a519b;
  color: #ffffff;
  transform: scale(1.05);
}

.zebra-tr:nth-child(even) td {
  background-color: #ffffff;
}

.zebra-tr:nth-child(odd) td {
  background-color: #f1fafe;
}

table.personal-info-table {
  background-color: #ffffff;
  color: #4d4d4d;
  margin: 20px;
  padding: 30px;
  width: 650px;
  border: 1px solid #143a73;
  border-radius: 4px;
}

table.personal-info-table h2 {
  background-color: #143a73;
}

.cases-table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
}

.cases-table th {
    background-color: #3a519b;
    color: white;
    text-align: left;
    padding: 8px;
}

.cases-table td {
    border: 1px solid #143a73;
    padding: 8px;
}

.custom-input {
  padding: 10px;
  font-size: 16px;
  border: 1px solid #3a519b;
  border-radius: 4px;
  background-color: #f1fafe;
  color: #4d4d4d;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.custom-input:focus {
  border-color: #143a73;
  box-shadow: 0 0 5px rgba(58, 81, 155, 0.5);
  outline: none;
}

.custom-input:disabled {
  background-color: #e5e5e5;
}

input.date-picker {
  padding: 10px;
  font-size: 16px;
  border: 1px solid #3a519b;
  border-radius: 4px;
  background-color: #f1fafe;
  color: #4d4d4d;
  transition: border-color 0.3s, box-shadow 0.3s;
}

input.date-picker:disabled {
  background-color: #e5e5e5;
}
