body {
    font-family: Arial, sans-serif;
    background-color: rgb(25, 25, 25);
    margin: 0;
    overflow-x: hidden;
    flex: 1;
    display: flex;
    flex-direction: column;
}


html, body {
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
}

.main-content {
    flex: 1;
}

.header {
    background-color: rgb(42, 42, 42);
    height: 65px;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    padding: 0 20px;
}

.icon {
    height: 70px;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.7));
}

.titles {
    display: flex;
    align-items: center;
    gap: 5px;
}

.titles a {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.blank h1 {
    color: rgb(219, 21, 22);
    margin: 0;
}

.RP h1 {
    color: rgb(231, 232, 234);
    margin: 0;
}

.tab-button {
    background-color: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    margin-left: auto;
    margin-right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-icon {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
}

.menu-icon span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: white;
    transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease;
}

.tab-button:hover .menu-icon span {
    background-color: rgb(219, 21, 22);
}

.tab-button.open .menu-icon span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.tab-button.open .menu-icon span:nth-child(2) {
    opacity: 0;
}

.tab-button.open .menu-icon span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.tab-list {
    position: fixed;
    top: 65px;
    right: -250px;
    width: 250px;
    height: calc(100vh - 65px);
    background-color: rgb(42, 42, 42);
    transition: right 0.3s ease-in-out;
    z-index: 999;
}

.tab-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tab-list li {
    padding: 12px 16px;
    border-bottom: 1px solid rgb(25, 25, 25);
}

.tab-list li a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    display: flex;
    align-items: center;
}

.tab-list li:hover, .tab-list li.active-tab {
    background-color: rgb(219, 21, 22);
}

.tab-icon {
    font-size: 16px;
    width: 20px;
    margin-right: 8px;
    text-align: center;
}

.tab-list.open {
    right: 0;
}

.titles .blank h1 {
    color: rgb(219, 21, 22);
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.titles .RP h1 {
    color: rgb(231, 232, 234);
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.footer {
    background-color: rgb(42, 42, 42);
    padding: 20px;
    text-align: center; 
    color: white;
    border-top: 2px solid rgb(219, 21, 22); 
    margin-top: 40px; 
    width: 100%; 
    position: relative;
    left: 0;
    bottom: 0;
}

.footer-content {
    max-width: 800px; 
    margin: 0 auto;
}

.footer-links {
    margin-bottom: 10px; 
}

.footer-links a {
    color: white; 
    text-decoration: none; 
    margin: 0 10px; 
    font-size: 14px;
}

.footer-links a:hover {
    color: rgb(219, 21, 22); 
}

.footer-disclaimer {
    font-size: 12px;
    margin-bottom: 10px;
    color: rgb(150, 150, 150); 
}

.footer-copyright {
    font-size: 12px; 
    color: rgb(150, 150, 150); 
}


.imprint-title {
    text-align: center;
    color: rgb(219, 21, 22);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    margin-top: 80px;
    font-size: 2.5em;
}

.imprint-container {
    color: white;
    margin: 20px auto;
    max-width: 800px;
    padding: 0 20px;
}

.imprint-container h2{
    color: rgb(219, 21, 22);
}

.imprint-container h5{
    color: rgb(150, 150, 150);
}

.imprint-number {
    color: white;
    margin-top: 20px;
}

.imprint-description {
    color: white;
    margin-bottom: 20px;
}


.footer {
    width: 100%;
    background-color: rgb(42, 42, 42);
    padding: 20px;
    text-align: center;
    color: white;
    border-top: 2px solid rgb(219, 21, 22);
    margin-top: auto;
}

.footer-content {
    max-width: 100%; 
}

.tab-login {
    width: 100%;
    padding: 12px 16px;
    background-color: rgb(42, 42, 42);
    border-top: 1px solid rgb(25, 25, 25);
    text-align: center;
    position: absolute;
    bottom: 0;
    left: 0;
}

.tab-login a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 16px;
}

.tab-login a:hover {
    background-color: rgb(219, 21, 22);
}