/* Reset some default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Global Styles */
body {
    font-family: Arial, sans-serif;
}

a:active {
    cursor: progress;
}

/* List Styles */
ul {
  list-style: none; /* Remove default list styles */
  /*  list-style-image: url('logo.svg'); */
  padding-left: 5px; /* Adjust the padding as needed */
}

li {
/*  position: relative; /* Make the li container for absolute positioning */
  margin-bottom: 10px; /* Adjust the margin as needed */
}

li::before {
  /*content: url('logo.svg'); /* Set the bullet as content */
  width: 20px; /* Set the width of the bullet */
  height: 20px; /* Set the height of the bullet */
  display: inline-block; /* Make it an inline block for sizing */
  margin-right: 10px; /* Adjust the spacing between the bullet and text */
  vertical-align: middle;
}

/* Additional styling, e.g., shadow effect */
li::before {
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.5)); /* Add a shadow effect */
}



.container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    justify-content: space-around;
}

.content {
    max-width: 1200px;
    margin: 0 auto;
}

/* Header Styles */
.header {
    background-color: black;
    color: white;
    padding: 0px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.logo {
    height: 50px; /* Adjust as needed */
}

.menu ul {
    list-style: none;
    display: flex;
}

.menu li {
    padding: 10px;
    margin-right: 20px;
}

.menu a {
    color: white;
    text-decoration: none;
}

.menu a:hover {
    text-decoration: underline;
}





        .flex-container {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
        }

        .folder-link {
            text-decoration: none;
            color: #007BFF;
            background: greenyellow;
            padding: 10px;
            border: 1px solid #007BFF;
            border-radius: 5px;
            display: block;
            width: 220px;
            text-align: center;
        }
        
        .folder-link:hover {
            background:yellow;
        }
        
        .folder-link:visited {
            background:white;
        }
        
        
        
        .menu-link {
            text-decoration: none;
            color: #007BFF;
            background: greenyellow;
            padding: 10px;
            border: 1px solid #007BFF;
            border-radius: 5px;
            display: block;
            width: 220px;
            text-align: center;
        }
        
        .menu-link:hover {
            background:yellow;
        }
        
        .menu-link:visited {
            background:white;
        }




.column {
    width: 30%;
    padding: 15px;
 /*   border: 1px solid #ddd;
    box-sizing: border-box;  */
}


.left {
    text-align: left;
}

.right {
    text-align: right;
}

.center {
    text-align: center;
}



/* Section Styles */
.section {
    padding: 50px 0;
    text-align: center;
}

.section h1,
.section h2 {
    margin-bottom: 20px;
}

/* Footer Styles */
.footer {
    background-color: grey;  /* #f2f2f2 is light grey; #333 is almost black;  */
    padding: 15px 0;
    text-align: center;
    color: #000;    /* #fff is ,aybe white */
    position: fixed;
    width: 100%;
    bottom: 0;
}

.footer a {
    color: black;
    text-decoration: bold;
}

.footer a:hover {
    text-decoration: underline;
}






        .accordion {
            display: flex;
            justify-content: flex-end;
            align-items: center;
            cursor: pointer;
        }

        .accordion-content {
            display: none;
            padding: 10px;
        }

        .accordion-content a {
            color: #fff;
            text-decoration: none;
            display: block;
            padding: 5px;
            transition: background-color 0.3s;
        }

        .accordion-content a:hover {
            background-color: #555;
        }

        .accordion.active .accordion-content {
            display: block;
        }

        .caret {
            margin-left: 5px;
            border: solid transparent;
            border-width: 6px 6px 0;
            border-bottom-color: #fff;
        }


