﻿/* Celý layout: hlavný obsah + pravý sidebar */
.container.main-layout {
  display: grid;
  grid-template-columns: 2fr 1fr; /* Hlavný obsah 2x väčší */
  gap: 20px;
}

/* Hlavný obsah */
main.content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

a {
    color: transparent;
    background: linear-gradient(90deg, #00c6ff, #0072ff);
    -webkit-background-clip: text;
    background-clip: text;
    text-decoration: none;
    position: relative;
    transition: 0.3s;
}

a:hover::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #00c6ff, #0072ff);
    border-radius: 2px;
}


/* Sidebar */
.sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Všetky sekcie / karty */
.table-card {
  background: #fff;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.1);
}

.table-card h2, .table-card h3 {
  margin-bottom: 10px;
}

/* Tabuľky vo vnútri karty */
.table-card table.data {
  width: 100%;
  border-collapse: collapse;
}

.table-card table.data th,
.table-card table.data td {
  border: 1px solid #ddd;
  padding: 5px 10px;
  text-align: center;
}

.table-card table.data th {
  background-color: #f5f5f5;
}