.header1{
    font-size: 5vw;
    font-weight: bolder;
    color: white;
}

h2{
    color: rgb(1, 41, 75);
    padding-top: 8vh;
    font-size: 3vw;
}

h4{
    font-size: 20px;
    color: rgb(1, 41, 75);
}

h7{
    font-size: 12px;
    /*font-weight: bold;*/
}

p, li{
    font-size: 14px;
}

body{
    margin: 0;
    padding: 0;
    overflow-x: clip;
    font-family: "Taner Font", sans-serif;
}

container{
    display: grid;
    margin: auto;
    width: 65vw;
    padding-bottom: 15vw;
}

.no-style{
    text-decoration: inherit;
    color: inherit;
}

/*----------------------------------*/
.large-banner{
    height: 30vh;
    width: 100vw;
    background: rgb(250, 100, 10);
    display: flex;
    padding: 10px;
}

.large-banner-decoration > img{
    height: 10vw;
    object-fit: contain;
    position: absolute;
}

.half-circles{
    top: 0;
    right: 33vw;
}

.zig-zag{
    right: 0;
    bottom: 67vh;
}

.down-decor{
    top: 0;
    left: 5vw;
}

.large-banner-content{
    width: 100%;
    display: flex;
    flex-flow: row;
    justify-content: space-between;
    align-items: flex-end;
}

.large-banner-content > img{
    height: 100%;
    width: 40%;
    object-fit: cover;
}

.large-banner-content > h1{
    margin-bottom: 4vh;
    position: relative;
    left: -4vw;
}

.rotate-right{
    transform: rotate(-90deg);
}

/*----------------------------------*/
.add-button {
    width: 75px;
    height: 75px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: rgb(250, 100, 10);
    position: fixed;
    bottom: 70px;
    right: 70px;
    border: none;
    box-shadow: 0 2px 8px rgba(1, 41, 75, 0.14), 0 1.5px 3px rgba(0, 0, 0, 0.07);
    cursor: pointer;
    z-index: 99;
    transition: box-shadow 0.2s, background 0.2s;
}

.add-button:hover {
    background: rgb(220, 0, 0);
    transform: scale(1.05);
}

.add-button:active {
    transform: scale(0.95);
}

.docked-nav{
    z-index: 2;
    height: 115px;
    width: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: white;
    position: fixed;
    top: 0;
    left: 0;
}

.button{
    padding: 5px 20px;
    border: none;
    border-radius: 3px;
    color: white;
    font-weight: bold;
    background: rgb(0, 90, 155);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.button:hover{
    background: rgb(0, 70, 130);
}

.blue-body{
    background: rgb(248, 250, 253);
}

.small-footer{
    width: 100vw;
    height: 5vh;
    background: rgb(250, 100, 10);
    color: white;
}

.small-footer > div{
    width: 80vw;
    height: 100%;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    margin: auto;
}

.level{
    padding-right: 1vw;
}

.level > a > h7{
    padding-left: 1vw;
}

.level > a {
    color: white;
    text-decoration: none;
}

.elevated-progress-bar{
    border-radius: 5px;
    filter: drop-shadow(1px 1px 2px gray);
}

.progress-bar-details{
    display: flex;
    justify-content: space-between;
}

.progress-bar-details > p{
    margin-bottom: 2px;
    color: #000;
    font-weight: 400;
}

.election-cards-container {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

.card-button {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 0;
    margin: 1vh 0;
    cursor: pointer;
}

.no-style {
    text-decoration: none;
    color: inherit;
}

.panel-card:hover {
    transform: translateY(-2px);
}

.add-option {
    background: rgb(250, 100, 10);
    margin-bottom: 10px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(1, 41, 75, 0.14), 0 1.5px 3px rgba(0, 0, 0, 0.07);
    min-width: 140px;
    transition: all 0.2s ease;
    padding-right: -14vw;
}

.add-option:hover {
    transform: translateX(-5px);
    box-shadow: 0 4px 12px rgba(1, 41, 75, 0.2);
}

.add-option a {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: background-color 0.2s ease;
    border: none;
    background: none;
    width: 100%;
    cursor: pointer;
    border-radius: 8px;
}

.add-option a:hover {
    background: rgba(0, 0, 0, 0.1);
}

.add-option i {
    font-size: 16px;
    /*margin-right: 10px;*/
    text-align: center;
    color: white;
    width: 20px;
}

.add-option span {
    font-size: 14px;
    white-space: nowrap;
}

#add-button-options {
    opacity: 0;
    flex-direction: column;
    justify-content: end;
    align-items: end;
    padding: 11rem 4rem;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

#add-button-options.show {
    opacity: 1;
    transform: translateY(0);
}
