/* Global Font */
body {
    font-family: 'Century Gothic', sans-serif;
    color: #000;
}

/* Global Button Styles */
.button {
    background-color: #ab9257;
    color: #fff;
    border: none;
    border-radius: 20px;
    padding: 10px 20px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.button:hover {
    background-color: #8f7b4c;
}

/* MEP Table Styles */
.mep-table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Century Gothic', sans-serif;
}

.mep-table th {
    background-color: #ab9257;
    color: #fff;
}

.mep-table td, .mep-table th {
    padding: 10px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.mep-table tr:hover {
    background-color: #f1f1f1;
}

/* Modal Styling */
.modal {
    display: none; /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.modal-content {
    padding: 20px;
    border-radius: 10px;
    width: 80%;
    max-width: 500px;
    background-color: #fff;
    font-family: 'Century Gothic', sans-serif;
    position: relative;
}

.modal-close {
    font-size: 24px;
    font-weight: bold;
    position: absolute;
    top: 10px;
    right: 10px;
    color: #000;
    cursor: pointer;
}
.category-list {
    margin-top: 20px;
}

.category-box {
    background-color: #efefef;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.category-title {
    font-size: 20px;
    font-weight: bold;
    margin-right: 10px;
}

.subcategories-list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 10px;
}

.subcategory-item {
    background-color: #efefef;
    border-radius: 8px;
    padding: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}
/* General Button Styling */
.button-small {
    background-color: #ab9257;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 5px 10px;
    font-size: 0.9em;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.button-small:hover {
    background-color: #8f7b4c;
}
.box.has-text-centered {
    border-radius: 10px;
    padding: 20px;
}

.box h2 {
    font-family: 'Century Gothic', sans-serif;
    color: #fff;
}

.button.is-light {
    background-color: #fff;
    color: #ab9257;
    border: none;
    border-radius: 20px;
}

.button.is-light:hover {
    background-color: #e6e6e6;
}

