* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Helvetica, Arial, sans-serif;
    background-color: #f5f5f5;
    padding: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

h1 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 30px;
    color: #333;
}

.filter-key {
    font-size: 14px;
    font-weight: 600;
    margin-right: 10px;
    cursor: pointer;
    display: inline-block;
    vertical-align: middle;
    min-width: 160px;
}

.filters {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
}

.filter-group-container {
    background-color: #fff;
    padding: 20px 20px 5px;
    border-radius: 6px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.filter-group-name {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #007bff;
}

.filter-group {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.filter-btn {
    background-color: #ffffff;
    border: 1px solid #cccccc;
    font-size: 12px;
    padding: 6px 12px;
    border-radius: 4px;
    cursor: pointer;
    display: inline-block;
    text-align: center;
    color: #333;
    transition: background-color 0.3s, border-color 0.3s, color 0.3s;
    height: 40px;
}

.hover-highlight {
    background-color: #FFE66D !important;
    color: #222 !important;
}

.filter-btn.active {
    background-color: #007bff;
    border-color: #007bff;
    color: #ffffff;
}


.button-disabled {
    background-color: #999;
    cursor: not-allowed;
  }


table {
    border-collapse: collapse;
    width: 100%;
    background-color: #fff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
}

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

th {
    background-color: #f2f2f2;
    font-weight: bold;
    color: #333;
}

tr:nth-child(even) {
    background-color: #f9f9f9;
}

a {
    color: #007bff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

#no-data-message {
    display: none;
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-top: 20px;
}

#title-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 10px 0;
    background-color: #007bff;
    color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
    z-index: 10;
}

#title-bar h1 {
    margin-left: 20px;
    padding-top: 24px;
    font-size: 24px;
    font-weight: 300;
    color: #ffffff;
    line-height: 1;
    display: inline-flex;
}

.icon {
    display: flex;
    align-items: center;
    margin-right: 10px;
}

.icon img {
    width: 30px;
    height: 30px;
  }

#main-content {
    padding-top: 100px;
    box-sizing: border-box;
}

footer {
    margin-top: 40px;
    text-align: center;
    font-size: 16px;
    color: #666;
}

#heart {
    color: red;
}

br {
    line-height: 1px;
 }

