body {
    font-size: 80%;
    padding: 0px;
    margin: auto;
    max-width: 960px;
    background-color: #FFFFFF;
    color: #002340;
    height: 100%;
    font-family: Arial, sans-serif !important;
}

a,
a:visited {
    color: #002340;
}

img {
    padding: 3px 1px;
    border: 0;
    font-size: 0%;
    vertical-align: middle;
}

.logo {
    text-align: left;
    padding: 3px;
    color: #fff;
    font-weight: bold;
    background-color: #B4FF00;
    border-radius: 0px 0px 13.3087px 13.3087px;
}

.content {
    display: flex;
    padding: 20px;
    /* height: 27%; */
    /* flex-direction: column; */
    /* align-items: self-start; */
    /* justify-content: space-around; */
    align-content: start;
    flex-wrap: wrap;
    min-height: 80vh;
    /* height: 80vh; */
}

.tables {
    overflow-x: scroll;
}

.tables table {
    border-spacing: 0px;
    border-collapse: collapse;
}

.tables th,
.tables td {
    border: 1px solid #002340;
    padding: 5px;
}



.footer {
    text-align: left;
    padding: 3px 3px 3px 3%;
    clear: both;
    background-color: #B4FF00;
    position: unset;
    bottom: 0;
    left: 0;
    right: 0;
}

.addon-activation {
    background: #C4DFE9;
    padding: 10px;
}

.addon-deactivation,
.terms {
    margin-top: 15%;
}

.accordion {
    max-width: 600px;
    margin: 0 auto;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.accordion-item {
    border-bottom: 1px solid #ddd;
}

.accordion-item:last-child {
    border-bottom: none;
}

.accordion-header {
    background-color: #f9f9f9;
    padding: 16px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
    user-select: none;
}

.accordion-header:hover {
    background-color: #f0f0f0;
}

.accordion-header.active {
    background-color: rgba(20, 26, 23, 0.15);
    color: #0f2b46;
}

.accordion-title {
    font-size: 16px;
    font-weight: 600;
}

.accordion-icon {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.accordion-header.active .accordion-icon {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-body {
    padding: 16px;
    background-color: #fff;
    color: #333;
    line-height: 1.6;
}