body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #fff;
}

.container {
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

h1 {
  font-size: 24px;
  margin-bottom: 20px;
}

.table-wrapper {
  overflow-x: scroll!important;
  width: 1200px!important;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 800px;
}

th, td {
  border: 1px solid #ccc;
  padding: 10px;
  text-align: center;
}

th {
  background-color: #f5f5f5;
  font-weight: bold;
  font-size: 14px;
}

tr:nth-child(even) {
  background-color: #fafafa;
}

tr.total-row {
  background-color: #eee;
  font-weight: bold;
}

td.text-left {
  text-align: left;
}

td.text-right {
  text-align: right;
}



/* Loader */

#loader {
  display: none;
  font-weight: bold;
  font-size: 14px;
  padding: 15px 0;
}

.dots::after {
  content: "";
  animation: dots 1.5s steps(4, end) infinite;
}

@keyframes dots {
  0%   { content: ""; }
  25%  { content: "."; }
  50%  { content: ".."; }
  75%  { content: "..."; }
  100% { content: ""; }
}



/* Контейнер формы */

.filter-container button {
  padding: 8px 14px;
  background: #0066cc;
  border: none;
  border-radius: 6px;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease;
}

.filter-container button:hover {
  background: #0055aa;
}




/* Общие стили для инпутов */
#start-date, 
#end-date {
  padding: 8px 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
  background: #fff;
  transition: all 0.2s ease;
  cursor: pointer;
}

#start-date:focus,
#end-date:focus {
  border-color: #0066cc;
  box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.2);
  outline: none;
}






