body {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    background-color: rgb(254, 252, 252);
    color: #333;
    max-width: 800px;
    margin: 40px auto;
    padding: 0 20px;
    line-height: 1.6;
}

header {
    margin-bottom: 40px;
}

.nav-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-links button {
    background: none;
    border: 1px solid rgb(124, 18, 28);
    color: rgb(124, 18, 28);
    padding: 5px 15px;
    margin-right: 10px;
    cursor: pointer;
    font-size: 16px;
    font-family: inherit;
    border-radius: 4px;
}

.nav-links button:hover {
    background-color: rgb(124, 18, 28);
    color: white;
}


.separator {
    border: 0;
    border-top: 1px dashed #ccc;
    margin: 30px 0;
}

h1, h2, h3, h4 {
    color: rgb(124, 18, 28);
    margin-top: 0;
}

.profile-photo {
    width: 200px;
    height: auto;
    margin: 10px 0 20px 0;
    border-radius: 4px;
}

a {
    color: rgb(124, 18, 28);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

#cv-viewer, #apps-viewer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(254, 252, 252);
    z-index: 1000;
    padding: 20px;
    overflow-y: auto;
    box-sizing: border-box;
}

#cv-viewer button, #apps-viewer button {
    margin-bottom: 20px;
    padding: 5px 15px;
    background: rgb(124, 18, 28);
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 4px;
}

#apps-list {
    list-style: none;
    padding: 0;
}

#apps-list li {
    margin-bottom: 10px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

#apps-list li a {
    font-weight: bold;
}
