/* General Reset */
body, h1, p, a, ul, li {
    margin: 0;
    padding: 0;
    list-style: none;
    font-family: Arial, sans-serif;
}

body {
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
    padding: 10px;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #444 url('logo.jpg') no-repeat left center;
    color: white;
    padding: 10px 15px;
    position: relative;
}

.menu {
    position: relative; /* Ensures the dropdown positions relative to its parent */
    z-index: 1; /* Optional, ensures parent container is properly layered */
}

.menu-icon {
    font-size: 24px;
    cursor: pointer;
}



/* Dropdown Menu */
#dropdown-menu {
    position: absolute;
    top: 50px;
    right: 10px;
    background: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    overflow: hidden;
    display: none;
    width: 150px;
    z-index: 10000; 
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}



#dropdown-menu ul {
    padding: 10px 0;
}

#dropdown-menu ul li {
    text-align: right;
    padding: 10px;
}

#dropdown-menu ul li a {
    color: #007bff;
    text-decoration: none;
}

#dropdown-menu ul li a:hover {
    background: #f4f4f4;
    padding: 5px 10px;
}

/* Main Content */
.nested-box2 {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin-top: 20px;
}

h1 {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: #007bff;
}

p {
    margin-bottom: 15px;
}

a {
    color: #007bff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.info {
    border-bottom: 1px dotted #555;
    cursor: help;
}

/* Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 1.3em;
    }

    p {
        font-size: 1em;
    }
}
