body {
    font-family: "Cascadia Code", monospace;
    color: #000000;
	/*justify-content: center;
	align-items: stretch;
	flex-direction: stretch; */
	min-height: 100vh; /* Makes the body at least as tall as the screen */
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-rows: auto 1fr auto;
	grid-template-columns: 100%;
}

h1 { 
	color: #000000; 
}

/* Styling for CV */
.cv-container { 
    color: #000000;
	padding: 1em;
	width: 80%; 
	max-width: 100%;
	margin: 1em auto;
	box-sizing: border-box;
}

.download-btn {
    display: inline-block;
    background: #3498db;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 20px;
}

header {
	width: 80%;
	min-height: 50px;
	min-width: 300px;
	margin: 20px auto;
	max-width: 1000px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background-color: #ffffff;
	padding: 1em 1em;
}

main {
	width: 60%;
	min-width: 300px;
	margin: 20px auto;
	padding: 1em 1em;
	line-height: 1.6; /* Adds breathing room between lines of text */
	background-color: #ffffff;
}

footer {
	width: 100%;
	box-sizing: border-box;
	max-height: 200px;
	padding: 1em 10%;
	background-color: #f2f2f2;
	color: #cccccc;
	text-align: center;
}


.download-btn:hover { background: #2980b9; }

.nav-btn {
    flex: 1;
    text-align: center;
    background: #f4f4f4;
    color: #555;
    padding: 10px;
    text-decoration: none;
    border-radius: 5px;
    border: 1px solid #ddd;
    font-size: 0.9em;
}

.nav-btn:hover {
    background: #e8e8e8;
    color: #000;
}

.su {
  float:right;
  font-style:italic;
  font-size:16px;
  text-transform:none;
  position:relative;
  top:3px;
  font-weight:400
}

* {
    font-variant-ligatures: common-ligatures;
}

/* Below is Styling for CV Stuff I believe */
.cv-item {
    display: flex;
    align-items: baseline;
    width: 100%;
    margin-bottom: 10px;
}

details.cv-item {
    display: flex;
    flex-direction: column; 
}

/* This keeps the top line (Company --- Year) horizontal */
details.cv-item summary {
    display: flex;
    width: 100%;
    align-items: baseline;
}

.spacer {
    flex: 1; /* This takes up all the empty space in the middle */
    border-bottom: 1px dashed #ccc; /* This creates the line */
    margin: 0 10px;
    height: 1px;
}
.spacer2 {
    flex: 1; /* This takes up all the empty space in the middle */
    border-bottom: 1px none #ccc; /* This creates the line */
    margin: 0 10px;
    height: 1px;
}

.company {
   /* white-space: nowrap;  Prevents the text from wrapping to a second line */
}

details[open] .company {
    color: #3498db;
    font-weight: bold;
}

.year {
    white-space: nowrap; /* Prevents the text from wrapping to a second line */
}

/* This is for the dropdown menu (Both Summary and .details-content) */
summary {
    display: flex;
    align-items: baseline;
    width: 100%;
    cursor: pointer; /* Changes mouse to a hand to show it's clickable */
    list-style: none; /* Hides the default small triangle/arrow */
}

/* For Safari users, you need this to hide the arrow */
summary::-webkit-details-marker {
    display: none;
}

.details-content {
	white-space: wrap;
    padding: 10px 20px;
    font-size: 0.9em;
    color: #444; /* Slightly lighter text for the description */
	border-left: 2px solid #3498db;
    margin-top: 5px;
}