/* style.css */
body {
    font-family: Arial, sans-serif;
}

.container {
    width: 80%;
    margin: 40px auto;
}

.tab-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: space-between;
}

.tab-list-item {
    cursor: pointer;
    padding: 10px 20px;
    border: 1px solid #ccc;
    border-bottom: none;
    background-color: #f0f0f0;
}

.tab-list-item.active {
    background-color: #fff;
    border-bottom: 1px solid #ccc;
}

.tab-content {
    padding: 20px;
    border: 1px solid #ccc;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

table {
    border-collapse: collapse;
    width: 100%;
}

th, td {
    border: 1px solid #ccc;
    padding: 10px;
    text-align: left;
}

th {
    background-color: #f0f0f0;
}
.hidden {
    display: none;
}
.buton {
  background-color: #4CAF50;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  text-decoration: none;
}

.buton:hover {
  background-color: #3e8e41;
}
