body {
    font-family: 'Courier New', Courier, monospace;
    background-color: #1e1e1e;
    color: #d4d4d4;
    margin: 20px;
}

.section {
    margin-bottom: 20px;
    background-color: #252526;
    border: 1px solid #3c3c3c;
    border-radius: 5px;
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    padding: 10px;
    background-color: #333333;
    border-bottom: 1px solid #3c3c3c;
    color: #9cdcfe;
}

.section-name {
    font-weight: bold;
    font-size: 1.2em;
}

.toggle-btn {
    background-color: transparent;
    border: none;
    font-size: 18px;
    cursor: pointer;
    color: #9cdcfe;
}

.section-content {
    display: none; /* Hide the section initially */
    margin-top: 10px;
    padding: 10px;
    border-left: 3px solid #007acc;
    background-color: #1e1e1e;
    color: #d4d4d4;
}

.content-link {
    color: #9cdcfe;
    text-decoration: none;
}

.content-link:hover {
    color: #007acc;
    text-decoration: none;
}

.subsection {
    margin-left: 20px;
    border-left: 2px solid #3c3c3c;
    padding-left: 10px;
}

a.cv-link {
    display: inline-flex;
    align-items: center;
    color: #9cdcfe;
    text-decoration: none;
    margin-bottom: 20px;
    font-size: 18px;
}

a.cv-link:hover {
    color: #007acc;
    text-decoration: none;
}

a.cv-link i {
    margin-right: 8px;
}

/* Improved table styles */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 1em;
    font-family: 'Arial', sans-serif;
    color: #333;
}

table thead tr {
    background-color: #009879;
    color: #ffffff;
    text-align: left;
}

table th, table td {
    padding: 12px 15px;
    border: 1px solid #dddddd;
}

table tbody tr {
    border-bottom: 1px solid #dddddd;
}

table tbody tr:nth-of-type(even) {
    background-color: #f3f3f3;
    color: #333; /* Ensure text color is readable */
}

table tbody tr:nth-of-type(odd) {
    background-color: #ffffff; /* Ensure text color is readable */
    color: #333; /* Ensure text color is readable */
}

table tbody tr:last-of-type {
    border-bottom: 2px solid #009879;
}

/* Improved button styles */
button {
    background-color: #009879;
    color: white;
    border: none;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #007f67;
}

/* Style for code snippets */
code {
    background-color: #2d2d2d;
    color: #dcdcdc;
    padding: 2px 4px;
    border-radius: 4px;
    font-family: 'Courier New', Courier, monospace;
}

pre {
    background-color: #2d2d2d;
    color: #dcdcdc;
    padding: 10px;
    border-radius: 4px;
    overflow-x: auto;
    font-family: 'Courier New', Courier, monospace;
}

img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  max-width: 100vw;
  max-height: 100vh;
  display: block;
  margin: 0 auto;
}
