body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

.header {
 	padding: 15px;
  	background-color: #333;
}

.container {
    max-width: 70%;
    margin: 0 auto;
    padding: 20px;
}

.dark-mode-toggle label {
	color: #fff;
}

ul {
    list-style-type: none;
    padding: 0;
}

a {
    text-decoration: none;
    color: #333;
}

a:hover {
    text-decoration: underline;
}

.breadcrumbs {
    font-size: 14px;
    margin-bottom: 10px;
  	color: #fff;
}

.breadcrumbs a {
  	color: #fff;
}

.dark-mode-toggle {
    position: absolute;
    top: 10px;
    right: 20px;
}

table {
    width: 100%;
	text-align:left;
}

th {
    border-bottom: 1px solid lightgray;
    padding: 10px;
}

td {

    padding: 10px;
}

.filetypetd {
	text-align:center;
}

.filesizetd {
	text-align:right;
}

.locationtd {
	background-color: lightgray;
  	color: black;
}

/* Dark Mode Styles */
.dark-mode {
    background-color: #333;
    color: #fff;
}

.dark-mode a {
    color: #fff;
}

.dark-mode .breadcrumbs {
    color: black;
}

.dark-mode .breadcrumbs a {
    color: black;
}

.dark-mode-header {
    background-color: #ffffff94;
  	color: black;
}

.dark-mode-black-text {
    color: black !important;
}

