/* Main Button */

.buttonWithPress {
    background-color: gainsboro;
    background-image: linear-gradient(180deg, deepSkyBlue, dodgerBlue);
    border: 1px solid blue;
    color: black;
    text-align: center;
    cursor: pointer;
    padding: 10px 2px;
    outline: none;
    border-radius: 15px;
    box-shadow: 0 5px grey;
    display: block;
    width: 80%;
    margin: 0 auto;
    font-size: large;
    font-weight: bold;
}

.buttonWithPress:active {
    box-shadow: none;
    transform: translateY(4px);
}

.buttonDisable {
    background-color: grey;
    box-shadow: none;
    transform: translateY(4px);
    cursor: not-allowed;
    opacity: 0.75;
}

.mainButton {
    position: fixed;
    left: 20vw;
    bottom: 60px;
    width: 60vw;
}

.buttonHalfPadding {
    padding: 3px 2px;
}

/* Warning Button */

.buttonWarning {
    position: fixed;
    bottom: 150px;
    left: 20vw;
    width: 60vw;
    background-image: linear-gradient(180deg, slateBlue, blue);
    color: white;
    background-color: darkred;
}

.buttonWarningYes {
    position: fixed;
    bottom: 170px;
    left: 20vw;
    width: 20vw;
    background-image: linear-gradient(180deg, slateBlue, blue);
    color: white;
    background-color: darkred;
}

.buttonWarningNo {
    position: fixed;
    bottom: 170px;
    right: 20vw;
    width: 20vw;
    background-image: linear-gradient(180deg, slateBlue, blue);
    color: white;
    background-color: darkred;
}

/*Modal Button*/

.buttonISBNModal {
    background-color: gainsboro;
    background-image: linear-gradient(180deg, deepSkyBlue, dodgerBlue);
    border: 1px solid blue;
    color: white;
    text-align: center;
    display: inline-block;
    font-size: 15px;
    cursor: pointer;
    font-weight: bold;
    border-radius: 50%;
    box-shadow: 0 5px grey;
}

.buttonISBNModal:active {
    box-shadow: none;
    transform: translateY(4px);
}