.navbar {
    background-color: #000; /* Update the color to match FAAC Technologies */
}

.nav-link {
    color: #fff; /* White text color for nav links */
    font-weight: 500;
    padding: 0.75rem 1.25rem;
}

.nav-link:hover {
    color: #007bff; /* Change hover color if needed */
}

.navbar-brand img {
    height: 40px;
}

.title {
    font-size: 2em;  /* Adjust the size as needed */
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f0f0f0; /* Grey background */
    padding: 10px;
    margin-bottom: 20px;
}

.table-title {
    text-align: center;
	font-size: 1.5em;  /* Adjust the size as needed */
    margin-top: 20px;
}

.key {
    display: flex;
    align-items: center;
    font-size: 0.5em;  /* Final size for the key text */
}

.key-item {
    width: 20px;
    height: 20px;
    display: inline-block;
    margin-right: 5px;
    border: 1px solid #ccc;
}

.key-text {
    margin-right: 15px;
}

.table-title-row {
    background-color: #f0f0f0; /* Grey background */
    cursor: pointer;
}

.section-box {
    border: 1px solid #ccc;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 5px;
    background-color: #fff;
}

.table-responsive {
    overflow-x: auto;
    max-height: 400px;  /* Adjust as needed */
}

.table thead th {
    position: sticky;
    top: 0;
    background-color: #f0f0f0;  /* Match the background color of the header */
    z-index: 1;
    border-bottom: 2px solid #ddd;  /* Add bottom border to differentiate from rows */
    padding: 10px;
}