
body {
    font-family: 'Segoe UI', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #e3f2fd;
    color: #004d40;
    line-height: 1.6; 
}

/* Header Styling */
header {
    background-color: #0288d1;
    color: white;
    padding: 15px 20px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Navigation Styling */
nav {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #004d40;
    padding: 10px 0;
    position: relative;
}

/* Links in Navigation */
nav a {
    color: white;
    text-decoration: none;
    padding: 10px 15px;
    margin: 5px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.active {
    font-weight: bold;
    color: #007BFF; /* Highlight color */
    border-bottom: 2px solid #007BFF;
}

.active:hover {
    font-weight: bold;
    color: #64a6ed; /* Highlight color */
    border-bottom: 2px solid #007BFF;
}

.mobile-nav a:hover {
    background-color: #026c6f; /* Hover effect */
    color: #e3f2fd;
    transform: scale(1.02);
    transition: all 0.2s ease-in-out;
}

/* Hamburger Menu for Mobile */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 25px;
    height: 20px;
    cursor: pointer;
    position: absolute;
    right: 20px;
}

.hamburger div {
    background-color: white;
    height: 3px;
    width: 100%;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    flex-direction: column;
    align-items: center;
    background-color: #004d40;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    z-index: 10;
    padding: 10px 0; /* Add padding to prevent cramped layout */
}

.mobile-nav a {
    width: 100%; /* Ensure links span full width */
    text-align: center;
    padding: 15px 0; /* Increase padding for easier tapping */
    margin: 0;
    border-top: 1px solid #026c6f;
    color: white; /* Ensure text is readable */
    text-decoration: none; /* Remove underline */
    font-size: 16px; /* Adjust font size for readability */
    transition: color 0.3s ease-in-out, border-bottom 0.3s;
}

.desktop-nav a:hover,
.mobile-nav a:hover {
    color: #007BFF;
    border-bottom: 2px solid #007BFF;
}

/* Show Mobile Menu */
.show {
    display: flex;
}

/* Main Content */
main {
    padding: 20px;
    max-width: 1200px;
    margin: auto;
}

/* Footer Styling */
footer {
    background-color: #0288d1;
    color: white;
    text-align: center;
    padding: 10px 0;
    bottom: 0;
    width: 100%;
    box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.1);
}

/* Header Styling for h1 */
h1 {
    color: #004d40;
    font-size: 2em;
    margin: 0;
}

h3 {
    color: #004d40;    
    margin: 0;
}

.data-container {
    margin-top: 20px;
}
.data-item {
    background: #e8f5e9;
    margin: 10px 0;
    padding: 10px;
    border-left: 4px solid #004d40;
    border-radius: 4px;
}
.data-item strong {
    color: #004d40;
}
.data-value {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #555;
}

.main-wrapper {
    display: flex;
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically (optional) */
    width: 100%; /* Ensure it takes full width */
    max-width: 100%;
}

.big-container-wrapper {
    display: flex;
    flex-direction: row; /* Align children horizontally */
    flex-wrap: nowrap; /* Prevent wrapping to the next line */
    overflow-x: auto; /* Enable horizontal scrolling if content overflows */
    gap: 50px; /* Add space between containers */
    padding: 20px; /* Add some padding for better spacing */
}

.big-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 0 0 auto; /* Prevent containers from shrinking or growing */
    
}

.big-container .number {
    font-family: sans-serif; /* Replace with the actual font */
    font-size: 90px;
    font-style: italic;
    font-weight: bold;
    margin-bottom: 5px; /* Adjust spacing as needed */
}

.big-container .line {
    width: 100%; /* Adjust width as needed */
    height: 2px; /* Adjust thickness as needed */
    background-color: black; /* Adjust color as needed */
    margin-bottom: 5px; /* Adjust spacing as needed */
}

.big-container .text {
    font-family: sans-serif; /* Replace with the actual font */
    font-size: 15px;
    letter-spacing: 0.03em;
    line-height: 1.2em;
}

.file-icon {
    display: flex;
    flex-direction: column;
    align-items: center; /* Center horizontally */
    justify-content: center; /* Center vertically */
    text-align: center;
}

.pdf-icon {
    width: 64px;
    height: auto;
    transition: transform 0.3s, box-shadow 0.3s;
    border-radius: 8px;
}

.file-icon:hover .pdf-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

.specialHeader-label {
    font-size: 0.9em; /* Smaller font size for the label */
    color: #666; /* Subtle color for the label */
    margin: 0px; /* Space between label and heading */
}

.specialHeader-data {
    font-size: 2em; /* Large font size for the heading */
    font-weight: bold; /* Bold text */
    color: #333; /* Dark color for emphasis */
    margin: 0; /* Remove default margin */
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.2); /* Optional: Subtle shadow */
}

/* Container */
.container-fluid {
    max-width: 1200px;
    margin: auto;
}

/* Align Right */
.alignright {
    float: right;
    margin: 0 0 10px 20px;
}

/* Blockquote Styling */
blockquote {
    border-left: 4px solid #004d40;
    margin: 20px 0;
    padding-left: 15px;
    font-style: italic;
    background-color: #e8f5e9;
    padding: 10px;
}

/* List Style */
ul {
    list-style-type: disc;
    margin: 10px 0 10px 20px;
}

.screen-1 {
    background: #0288d1;
    display: flex;
    flex-direction: column;
    border-radius: 30px;
    box-shadow: 0 0 2em hsl(231deg 62% 94%);
    gap: 2em;
    width: 100%;
    max-width: 350px; /* Adjust the max width as needed */
    padding: 2em;
    margin: auto;
}

.screen-1 .captcha{
    background: hsl(0deg 0% 100%);
    box-shadow: 0 0 5em hsl(231deg 62% 94%);
    padding: 1em;
    margin: auto;
    max-width: 80%;
    flex-direction: column;
    border-radius: 30px;
    color: hsl(0deg 0% 30%);
}


.screen-1 .email,
.screen-1 .password{
    background: hsl(0deg 0% 100%);
    box-shadow: 0 0 5em hsl(231deg 62% 94%);
    padding: 1em;
    display: flex;
    flex-direction: column;
    border-radius: 30px;
    color: hsl(0deg 0% 30%);
}

.screen-1 .email input,
.screen-1 .password input{
    border: 1px solid #0288d1;
    border-radius: 15px;
    padding: 4px 4px 4px 15px;

}

.screen-1 .email input::placeholder,
.screen-1 .password input::placeholder{
    color: hsl(0deg 0% 0%);
    font-size: 1em;
}

.screen-1 .gumb {
    padding: 1em;
    background: hsl(233deg 36% 38%);
    color: hsl(0 0 100);
    border: none;
    border-radius: 30px;
    font-weight: 600;
}

.screen-1 .gumb:hover {
    background: hsl(233deg 36% 50%);
    color: hsl(0 0 100);
    cursor: pointer;
}

.news-item {
    position: relative;
    background: #0288d1;
    display: flex;
    flex-direction: column;
    border-radius: 30px;
    box-shadow: 0 0 2em hsl(231deg 62% 94%);
    width: 90%;
    max-width: 800pt; /* Adjust the max width as needed */
    padding: 1em;
    margin: 2em auto 2em auto;
}

.news-item h2 {
    margin: 0;
    padding: 0;
}

.news-item .news-date {
    font-size: 14px;
    text-align: right;
    align-self: flex-end;
}

.news-item .news-attachment {
    display: inline-block;
    margin-top: 5px;
    font-size: 16px;
    color: #0056b3;
    text-decoration: none;
    border: 1px solid #0056b3;
    padding: 5px 10px;
    border-radius: 4px;
    transition: all 0.3s;
}

.news-item .news-attachment:hover {
    background-color: #0056b3;
    color: white;
    text-decoration: none;
}

.logo {
    max-width: 90%;
    max-height: 150px;
}

.caps-warning {
    display: inline-block;
    margin-top: 5px;
    color: #0288d1;
    font-size: 0.9em;
    opacity: 0;
    transform: translateY(-5px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    pointer-events: none; /* User cannot click it */
}

.caps-warning.show {
    opacity: 1;
    transform: translateY(0);
}

.password-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.password-wrapper input {
  flex: 1;
  padding-right: 40px;
}

.toggle-password {
  position: absolute;
  right: 10px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 18px;
}

.caps-warning {
  display: none;
  color: red;
  font-size: 0.9em;
  margin-top: 5px;
}

.caps-warning.show {
  display: block;
}

/* Responsive Navigation Menu */
@media (max-width: 768px) {
    nav {
        justify-content: space-between;
        padding: 10px 20px;
        background-color: #0288d1;
    }

    .hamburger {
        display: flex;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
    }

    .hamburger div {
        width: 30px;
        height: 3px;
        background-color: white;
    }

    nav a {
        display: none; /* Hide links by default */
    }

    /* Display Mobile Links when Menu is Toggled */
    .mobile-nav a {
        display: block;
        width: 100%;
    }

    /* Show Links when Mobile Menu is Active */
    .mobile-nav.show {
        display: flex;
    }

    /* Optional: Close Mobile Menu when clicking on a link */
    .mobile-nav a:active {
        color: white;
        text-decoration: none;
    }

    .screen-1 {
        max-width: 80%;
    }

    #sidebar {
        width: 200px;
    }
    #menu-toggle {
        display: block; /* Make sure the menu toggle is visible */
    }
    #sidebar.active {
        transform: translateX(0); /* Show sidebar when active */
    }

    .big-container-wrapper {
        flex-direction: column; /* Stack containers vertically on small screens */
        gap: 40px; /* Increase gap for better spacing */
    }

    .big-container {
        min-width: 250px; /* Increase width for larger screens */
    }
}
