/* Add your CSS styles here */
/* Reset margin and padding for all elements */
* {
    margin: 0;
    padding: 0;
}
html, body {
    height: 100%;
}
/* Header styles */
.header {
    display: flex;
    align-items: center;
    background-color: #333;
    color: #fff;
    padding: 20px;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.logo {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2; /* Increase the z-index to place it above the menu bar */
}

.logo img {
    width: 40px;
    height: 40px;
    margin-right: 10px;
}

.logo .logo_txt {
    font-size: 24px;
}

.menu-bar {
    display: flex;
    align-items: center;
}

.sticky-wrapper.sticky {
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    background-color: transparent;
    width: 100%;
    z-index: 1;
}

.menu-bar.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: transparent;
    z-index: 2; 
}

.menu-item {
    color: #fff;
    text-decoration: none;
    margin: 0 15px;
    position: relative;
}

.menu-bar i {
    font-size: 20px; 
    margin-right: 5px; 
    color: #5900ff;
}

.menu-bar a {
    font-size: 14px; 
    margin-right: 1px; 
    color: #ffffff; 
    border: 1;
}
.menu-bar a:hover {
    color: rgb(42, 187, 29);
}

.menu-item.active {
    font-weight: bold;
}

.menu-item.active::after {
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    background: #fff;
    position: absolute;
    bottom: -5px;
    left: 0;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    background: #333;
    position: absolute;
    top: 70px; 
    right: 20px; 
    z-index: 1001; 
}

.mobile-menu a {
    color: #fff;
    text-decoration: none;
    padding: 10px;
}

.toggle-bar {
    display: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
}

@media (max-width: 768px) {
    .menu-bar {
        display: none;
    }

    .toggle-bar {
        display: block;
    }

    .mobile-menu.show {
        display: flex;
    }
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h1 {
    color: #333;
}

.update-list {
    list-style-type: none;
    padding: 0;
}

.update-item {
    margin-bottom: 20px;
    border: 1px solid #ddd;
    padding: 10px;
    background-color: #f9f9f9;
}

h2 {
    color: #333;
    margin-top: 0;
}

p {
    color: #555;
    margin: 0;
}
.pagination {
    display: flex;
    justify-content: space-between;
}

.pagination a {
    display: inline-block;
    padding: 10px 20px;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
}

.pagination a:hover {
    background-color: #41012b;
}
.float-left {
    float: left;
}

.float-right {
    float: right;
}
.flex a:hover {
    background-color: #41012b;
}
.custom-container {
    min-height: 100%;
    margin-bottom: -60px; 
    padding-bottom: 60px;
    
}
.custom-container h4,
.custom-container p,
.custom-container a {
    color: #FFFFFF; 
}
.custom-container-2{
    margin-top: 3%;
    align-content: center;
    width: 100%;
    max-height: 200px;
    background-color: #555;
}
.custom-container-2 h1{
    align-content: center;
    color: #f5f5f5;
    font-size: 24px;
}
.alert.alert-success {
    background-color: #d4edda;
    border-color: #c3e6cb;
    color: #155724;
    padding: 10px;
    border-radius: 4px;
}

.alert.alert-danger {
    background-color: #f8d7da;
    border-color: #f5c6cb;
    color: #721c24;
    padding: 10px;
    border-radius: 3px;
}
.dark-mode {
    background-color: #121212; 
    color: #ffffff; 
    
}

.dark-mode.active {
    background-color: #000080; 
}