#acceptedRequest:hover {
    cursor: pointer;
}

#postedRequest:hover {
    cursor: pointer;
}

.view-post-container {
    width: 100%;
}

.accept-container {
    position: relative;
    width: 100%;
}

.spinner-border {
    color: rgb(197, 243, 233);
}

#spinner-border2 {
    color: rgb(47, 48, 48);
}

.container-post {
    position: relative;
    width: 100%;
}

.beside {
    width: 50%;
    float: left;
    text-align: left;
}

#acceptedRequest {
    text-align: center;
    background-color: rgb(47, 48, 48);
    color: rgb(197, 243, 233);
    padding: 20px;
}

#postedRequest {
    text-align: center;
    background-color: rgb(197, 243, 233);
    padding: 20px;
}

h4 {
    color: rgba(0, 0, 0, 0);
    line-height: 5pt;
}

#requestAccept {
    background-color: rgb(47, 48, 48);
    min-height: 80vh;
    max-height: fit-content;
    padding-bottom: 5rem;
}

#requestPosted {
    background-color: rgb(197, 243, 233);
    min-height: 80vh;
    max-height: fit-content;
    padding-bottom: 5rem;
}

.view-post-container {
    position: relative;
    width: 100%;
}

.acceptBoxes:hover {
    cursor: pointer;
    width: 93.5%;
}

.acceptBoxes {
    box-shadow: 0px 0px 3px 1px rgb(172, 172, 172);
    margin: 20pt auto 10pt auto;
    width: 90%;
    padding: 8pt;
    border-radius: 8pt;
    cursor: pointer;
    background-color: lightgray;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.request-number {
    font-size: 1.5rem;
    font-weight: bolder;
}

.schedule {
    margin-top: 5pt;
    color: rgb(182, 182, 182);
    font-style: italic;
    font-size: 0.8rem;
}

.accept-schedule {
    margin-top: 5pt;
    color: rgb(54, 54, 54);
    font-style: italic;
    font-size: 0.8rem;
}

.postBoxes:hover {
    cursor: pointer;
    width: 93.5%;
}

.postBoxes {
    box-shadow: 0px 0px 3px 1px rgb(172, 172, 172);
    margin: 20pt auto 10pt auto;
    width: 90%;
    padding: 8pt;
    border-radius: 8pt;
    cursor: pointer;
    background-color: rgb(47, 48, 48);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: lightgray;
}

.edit-button {
    cursor: pointer;
    height: 2.5rem;
    width: 5rem;
    background-color: lightgray;
    color: rgb(47, 48, 48);
    border-radius: 5px;
    display: block;
}

.done-button {
    cursor: pointer;
    height: 2.5rem;
    width: 5rem;
    background-color: rgb(47, 48, 48);
    color: rgb(197, 243, 233);
    border-radius: 5px;
    display: block;
    margin-bottom: 8pt;
}

.decline-button {
    background-color: rgba(31, 32, 32, 0);
    color: rgb(63, 5, 29);
    border-radius: 5px;
    height: 2.5rem;
    width: 5rem;
    display: block;
}

#profile_outline {
    width: 90%;
    margin: 20px auto;
    padding: 20px;
    display: block;
    border: 1px solid rgb(94, 94, 94);
}

#profile_outline div {
    padding: 4px;
}

#user-name {
    font-size: 1.3em;
    font-weight: bolder;
    width: 90%
}

#edit-wrapper {
    display: flex;
    justify-content: flex-end;
}

#edit-button {
    background-color: rgb(31, 32, 32);
    color: rgb(197, 243, 233);
    height: 5vh;
    width: 120pt;
    border-radius: 5px;
}

#done-success {
    min-width: 150px;
    width: 80%;
    max-width: 350px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /* adding scale(0) after the translate will make it disappear */
    border: 2px solid rgb(197, 243, 233);
    padding: 15px;
    z-index: 10;
    background-color: rgb(31, 32, 32);
    color: lightgray;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 500;
}

#done-header {
    display: flex;
    justify-content: space-between;
    padding-bottom: 8pt;
    border-bottom: 1px solid rgb(197, 243, 233);
}

#decline-success {
    min-width: 150px;
    width: 80%;
    max-width: 350px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /* adding scale(0) after the translate will make it disappear */
    border: 2px solid rgb(212, 0, 81);
    padding: 15px;
    z-index: 10;
    background-color: rgb(31, 32, 32);
    color: lightgray;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 500;
}

#decline-header {
    display: flex;
    justify-content: space-between;
    padding-bottom: 8pt;
    border-bottom: 1px solid rgb(212, 0, 81);
}

#overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, .5);
    pointer-events: none;
}