body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
    display: flex;
    flex-direction: column;
    height: 100vh;
}

.toolbar {
    background-color: #26a69a;
    color: white;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.toolbar .save-as-pdf {
    color: #bbdefb;
    font-weight: bold;
}

.toolbar .options {
    display: flex;
    align-items: center;
}

.toolbar .options span {
    margin: 0 10px;
}

.toolbar .download-btn {
    background-color: #bbdefb;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
}

.pdf-content {
    margin-top: 70px;
    padding: 20px;
    background-color: white;
    flex-grow: 1;
    overflow-y: auto;
}

.header {
    text-align: center;
    margin-bottom: 20px;
}

.header img {
    width: 60px;
    height: auto;
}

.header h2 {
    margin: 5px 0;
    font-size: 16px;
    color: #333;
}

.details {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.details .photo {
    width: 100px;
    height: 120px;
    margin-bottom: 10px;
}

.details .info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.details .info div {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
}

.details .info div span:first-child {
    font-weight: bold;
    color: #555;
}

.details .info div span:last-child {
    color: #333;
}

.footer {
    background-color: #e0e0e0;
    padding: 10px;
    text-align: center;
    font-size: 12px;
    color: #666;
    position: fixed;
    bottom: 0;
    width: 100%;
}

@media (max-width: 480px) {
    .details {
        flex-direction: column;
    }

    .details .photo {
        align-self: center;
    }

    .details .info div {
        flex-direction: column;
        text-align: left;
    }

    .details .info div span {
        margin: 2px 0;
    }
}