/*********************************** CSS For Styling Box *******************************/

.medium-buttons {
    width: 50px;
    height: 30px;
    border-radius: 7px;
    border: 1px solid #ccc;
    font-family: Arial;
    font-size: 16px;
    padding: 1px;
    text-decoration: none;
    cursor: pointer;
    outline: none;
}

#add-edit-style-container {
    border-radius: 10px;
    background-color: Chocolate;
    position: absolute;
    margin: auto;
    border: 2px solid black;
    font-family: Verdana, Geneva, sans-serif;
    color: black;
    z-index: 0;
    margin-bottom: 30px;
    padding: 0 20px 0 20px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1000px;
}

#add-edit-style-title {
    font-size: 30px;
    color: white;
    text-align: center;
    margin-bottom: 20px;
    margin-top: 20px;
}

#add-edit-style-subtitles {
    font-size: 15px;
    color: white;
    text-align: center;
    margin-bottom: 20px;
    margin-top: 20px;
    font-style: italic;
}

#add-edit-style-text {
    display: flex;
    justify-content: center;
    margin: 20px 0 20px 0;
}

#txt-add-edit-style {
    width: 950px;
    height: 300px;
    background-color: white;
    font-size: 30px;
    color: rgb(55, 55, 56);
}

#add-edit-style-nav {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.small-buttons {
    width: 30px;
    height: 30px;
    border-radius: 7px;
    border: 1px solid #ccc;
    font-family: Arial;
    font-size: 16px;
    padding: 1px;
    text-decoration: none;
    cursor: pointer;
    outline: none;
}

.smaller-buttons {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    border: 1px solid #ccc;
    font-family: Arial;
    font-size: 13px;
    padding: 3px;
    text-decoration: none;
    cursor: pointer;
    outline: none;
    margin-right: 5px;
    background-color: cornflowerblue;
    color: white;
}

.wide-buttons {
    width: 80px;
    height: 30px;
    border-radius: 7px;
    border: 1px solid #ccc;
    font-family: Arial;
    font-size: 16px;
    padding: 1px;
    text-decoration: none;
    cursor: pointer;
    outline: none;
    background-color: dodgerblue;
    color: white;
}

.btn-back-color-blue {
    background-color: dodgerblue;
}

.btn-back-color-red {
    background-color: red;
}

.btn-back-color-green {
    background-color: ForestGreen;
}

.btn-back-color-darkblue {
    background-color: darkblue;
}

.btn-back-color-brown {
    background-color: brown;
}

.btn-back-color-fuchsia {
    background-color: fuchsia;
}

.btn-back-color-orange {
    background-color: darkorange;
}

.btn-back-color-black {
    background-color: black;
}