﻿

.cvMainContainer{
    display:flex;
    flex-direction:column;
    width:100%;
    justify-content:center;
}
.downloadPanel {
    display: flex;
    justify-content: space-between;
    align-content: center;
    align-items: center;
    width: 100%;
    height: 50px;
    padding: 0.6rem;
    margin-top: 0.8rem;
    margin-bottom: 0.6rem;
    background-color: #ffffff;
}
#page-info {
    display: flex;
    justify-content: space-evenly;
    align-content: center;
    flex-wrap: nowrap;
    align-items: center;
    font-weight:400;
}
#page-info #divider{
    display:block;
    padding:0.1rem;
    margin:0.1rem;
}
#current-page {
    display: block;
    padding: 0.1rem 0.7rem 0.1rem 0.7rem;
}
#total-pages {
    display: block;
    padding: 0.2rem;
    padding: 0.1rem 0.7rem 0.1rem 0.7rem;
}

#page-nav {
    display: flex;
    justify-content: space-between;
    align-content: center;
    flex-wrap: nowrap;
    align-items: center;
    margin-left:-10rem;
}

@media (max-width: 768px) {
    #page-nav {
        margin-left: 0;
    }
}
#nextButton {
    border: 1px solid #dfe4ea;
    color: #34495e;
    font-size: 25px;
    width: 30px;
    height: 30px;
    margin:0.1rem;
}
#prevButton {
    border: 1px solid #dfe4ea;
    color: #34495e;
    font-size: 25px;
    width: 30px;
    height: 30px;
    margin:0.1rem;
}
#nextButton:hover {
    background-color: #636e72;
    color: white;
    border: none;
}

#prevButton:hover {
    background-color: #636e72;
    color: white;
    border: none;
}
#zoom{
    display:flex;
    justify-content:space-evenly;
    align-content:center;
    flex-wrap:nowrap;
    align-items:center;
}
#zoom-out {
    border: 1px solid #dfe4ea;
    color: #34495e;
    font-size:25px;
    width:30px;
    height:30px;
}
#zoom-in {
    border: 1px solid #dfe4ea;
    color: #34495e;
    font-size:25px;
    width:30px;
    height:30px;
}
#zoom-in:hover{
    background-color:#636e72;
    color:white;
    border:none;
}
#zoom-out:hover{
    background-color:#636e72;
    color:white;
    border:none;
}
#zoom-level {
    display: block;
    background-color: #636e72;
    padding: 0.1rem 0.5rem 0.1rem 0.6rem;
    font-size: 14px;
    font-weight: 400;
    margin: 1rem;
    color: white;
}
#downloadButton {
    background-color: #2ecc71;
    color:white;
    border:none;
}
#myCv{
    display:inline-block;
    margin-top:1rem;
}
.pdfPanel {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    position: relative;
    border: 1px solid #dfe6e9;
    background-color: #636e72;
    box-shadow: inset 0px 2px 100px 0px rgba(0,0,0,0.1);
}
    .pdfPanel canvas {
        box-sizing: border-box;
        box-shadow: 0px 0px 50px -21px #2d3436;
        -webkit-box-shadow: none;
        width: 100%;
        padding: 0.5rem;
        overflow: scroll;
    }


