* {margin: 0; padding: 0; box-sizing: border-box;}
.header {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    background-color: rgba(0, 255, 255, 0.5);
    height: 40px;
    width: 100%;
}
.menu-container {
    position: relative;
    display: flex;
}
.icon-menu {
    background-color: white;
    cursor: pointer;
    border: 1px solid black;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0;
    width: 40px;
    height: 40px;
    position: fixed;z-index: 1000;
}
.icon-menu ion-icon {
    font-size: 30px;
    color: black;
}
.icon-menu:focus {
    outline: none;
}
.list-menu {
    list-style-type: none;
    display: none;
    position: fixed;
    background-color: #333;
    top: 0;
    left: 0;
    width: 250px;
    max-height: 400px;
    border-radius: 0 0 5px 0;
    overflow-y: auto;
    z-index: 999;
}
.list-menu li {
    height: 35px;
    margin: 1px auto;
    display: flex;
    align-items: center;
    padding-left: 10px;
}
.list-menu li a {
    color: white;
    text-decoration: none;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.list-menu li a ion-icon {
    font-size: 22px;
    margin-right: 8px;
    font-weight: bold;
}
.list-menu li:hover {
    background: rgba(0, 255, 0, 0.5);
    border-radius: 0 50% 50% 0;
}
.list-menu li:hover a {
    color: black;
    padding-left: 10px;
}
.list-menu li.highlight {
    background-color: rgb(255, 255, 255);
    border-radius: 25px 0 0 25px;
    display: flex;
    justify-content: center;
    pointer-events: none;
}
.list-menu li.highlight a {
    color: black;
    text-align: center;
    font-weight: bold;
}
.menu-container.active .icon-menu {
    border-radius: 0px 5px 5px 0px;
    margin-left: 250px;
    z-index: 100;
    border-left: none;
}
.menu-container.active .list-menu {
    display: block;
    border: 1px solid black;
    border-left: none;
    z-index: 100;
}
.time-container {
    font-family: 'Times New Roman';
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: white;
    border-radius: 10px;
    width: 100px;
    padding: 2px;
    border: 1px solid black;
}
.clock-time {
    font-size: 16px;
    font-weight: bold;
    color: rgb(255, 0, 0);
}
.clock-date {
    font-size: 10px;
    color: black;
}
.login-container {
    width: 200px;
    display: flex;
    align-items: center;
}
.login-container a {
    background-color: white;
    color: black;
    font-size: 15px;
    font-family: 'Times New Roman';
    text-decoration: none;
    padding: 5px 15px;
    border-radius: 25px;
    width: 60%;
    text-align: center;
    margin-left: calc(100% - 60%);
    border: 1px solid black;
    cursor: pointer;
}
.login-container a:hover {
    background-color: rgba(255, 0, 255, 0.5);
    color: white;
    font-size: 14px;
    border: 1px solid white;
}
.login-container p {
    background-color: white;
    color: black;
    font-size: 14px;
    font-family: 'Times New Roman';
    text-decoration: none;
    padding: 5px 15px;
    border-radius: 25px;
    width: 100%;
    text-align: center;
    border: 1px solid black;
}
.search-section {
    display: flex;
    width: 100%;
    max-height: 50px;
    padding: 5px;
}
.logo-container {
    flex: 30%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.logo {
    height: 35px;
    width: 35px;
    border: 1px solid white;
    border-radius: 50%;
    box-shadow: 0 0 10px #fff;
}
.search-container {
    flex: 70%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: relative;
}
.search-input {
    width: 90%;
    padding: 7px 10px 7px 40px;
    font-size: 16px;
    border: 1px solid white;
    border-radius: 15px;
    outline: none;
}
.search-icon {
    position: absolute;
    left: 12px;
    font-size: 20px;
    color: #333;
    pointer-events: none;
}
.search-input:focus + .search-icon {
    color: black;
}
.search-input:focus {
    border-color: black;
}
.content-section {
    display: flex;
    position: relative;
    background-color: rgba(255, 255, 255, 0.7);
    padding: 2px 0;
}
.content-item {
    display: none;
}
.content-item h2 {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: black;
    font-family: 'Times New Roman';
    width: 60%;
    margin: 0 auto;
    border-radius: 25px;
    padding: 5px;
    border: 1px solid white;
    font-size: 22px;
    margin-bottom: 2px;
}
.content-item .textColor {
    font-weight: bold;
    background: linear-gradient(90deg, #ff0000, #ff7f00, #ffff00, #00ff00, #0000ff, #4b0082, #8b00ff, #ff0000);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: textColor 5s linear infinite;
}
@keyframes textColor {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}
@media (prefers-reduced-motion: reduce) {
    .content-item .textColor {
        animation: none;
        background-size: auto;
    }
    .copyright .copyright-text {
        animation: none;
        background-size: auto;
    }
}
.content-item.active {
    display: block;
}



#content1, #content2, #content3, #content4 {
    width: 100%;
}
.number-two, .number-three {
    padding: 5px 0 1px;
    max-height: 500px;
    overflow-y: auto;
}
.number-two {
    background-color: rgba(0, 255, 255, 0.5);
}
.number-two fieldset {
    padding: 0;
    border-radius: 4px;
    border: 1px solid #ff00ff;
    margin: 2px 5px;
}
.number-two fieldset:hover input {
    color: #fff;
}
.number-two fieldset legend {
    margin-left: 8px;
    padding-inline: 3px;
    font-size: 14px;
    color: #0000ff;
    font-family: 'Times New Roman';
}
.number-two fieldset input {
    padding: 0 5px 3px 75px;
    border: 0;
    background-color: transparent;
    color: #000;
    font-size: 16px;
    width: 100%;
    font-family: 'Times New Roman';
    outline: none;
}
.number-two button {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50%;
    border-radius: 25px;
    border: 1px solid #000;
    padding: 5px 20px;
    margin: 10px auto 3px;
    background-color: #fff;
}
.number-two button a {
    text-decoration: none;
    font-size: 16px;
    font-family: 'Times New Roman';
    color: #000;
}
.number-two button:hover {
    background-color: #ff8800;
    border: 1px solid #00ff00;
}
.number-two button:hover a {
    color: #ffffff;
}
.number-three {
    background-color: rgba(0, 255, 0, 0.5);
}
.number-three p {
    text-indent: 25px;
    font-size: 18px;
    font-family: 'Times New Roman';
    padding: 0 5px;
}
.number-three form {
    margin-top: 5px;
}
.number-three select {
    display: flex;
    width: 70%;
    margin: 0 auto;
    padding: 5px;
    text-align: center;
    border: 1px solid black;
    border-radius: 5px;
}
.number-three select:focus {
    outline: none;
}
.number-three select option {
    font-family: Arial;
}
.list-content-li {
    background-color: white;
    display: block;
    margin-top: 5px;
    padding: 5px 0 5px 5px;
    list-style-type: none;
}
.list-content-li li {
    display: flex;
    align-items: center;
    height: 22px;
    cursor: pointer;
}
.list-content-li li a {
    text-decoration: none;
    font-size: 17px;
    font-family: 'Times New Roman';
    color: black;
    margin-left: 3px;
}
.list-content-li li:hover a {
    text-decoration: underline;
    color: blue;
}
.pagination {
    display: flex;
    justify-content: center;
    gap: 6px;
    flex-wrap: wrap;
    width: 100%;
    position: relative;
    padding: 5px;
}
.pagination a {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    color: #000;
    font-size: 14px;
    transition: all 0.2s ease-in-out;
    height: 22px;
    width: 22px;
}
.pagination a ion-icon {
    font-size: 22px;
}
.pagination a:hover {
    background: #ff0000;
    color: #fff;
}

.pagination a.active, .pagination a[style*="font-weight:bold"] {
    background: #007bff;
    color: #fff !important;
    border-color: #ffffff;
    font-weight: bold;
    border-radius: 50%;
}

.copyright {
    background-color: #222;
    color: #f1f1f1;
    text-align: center;
    padding: 10px 0;
    font-size: 14px;
    font-family: Arial, sans-serif;
}
.copyright .copyright-text {
    font-weight: bold;
    font-family: 'Times New Roman';
    background: linear-gradient(90deg, #ff0000, #ff7f00, #ffff00, #00ff00, #0000ff, #4b0082, #8b00ff, #ff0000);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: copyright 5s ease infinite;
}
@keyframes copyright {
    0% { background-position: 200% 50%; }
    100% { background-position: 0% 50%; }
}