﻿

/* Set padding to keep content from hitting the edges */
.body-content {
    padding-left: 15px;
    padding-right: 15px;
}

/* Set width on the form input elements since they're 100% wide by default */
input,
select,
textarea {
    max-width: 280px;
}

.bg-gradient-soft-gray {
    background-color: rgb(232, 228, 227);
    background-image: linear-gradient(180deg, rgb(232, 228, 227) 10%, rgb(200, 196, 195) 100%);
    background-size: cover;
}

.bg-gradient-earth-tone {
    background-color: rgb(117, 126, 107);
    background-image: linear-gradient(180deg, rgb(117, 126, 107) 10%, rgb(89, 96, 81) 100%);
    background-size: cover;
}

.bg-gradient-custom {
    background-color: rgb(156, 182, 183);
    background-image: linear-gradient(180deg, rgb(156, 182, 183) 10%, rgb(120, 140, 141) 100%);
    background-size: cover;
}

.bg-gradient-warm-beige {
    background-color: rgb(199, 175, 147);
    background-image: linear-gradient(180deg, rgb(199, 175, 147) 10%, rgb(160, 140, 115) 100%);
    background-size: cover;
}

.bg-gradient-forest-dark {
    background-color: rgb(47, 71, 57);
    background-image: linear-gradient(180deg, rgb(47, 71, 57) 10%, rgb(30, 50, 40) 100%);
    background-size: cover;
}



.text-custom {
    color: #757e6b !important
}


.text-earth-tone {
    color: #2f4739 !important
}




.btn-earth-tone {
    color: #fff;
    background-color: #2f4739;
    border-color: #2f4739;
}

    .btn-earth-tone:hover {
        background-color: #757e6b;
        border-color: #757e6b;
        color: #fff;
    }

.btn-olive-gray {
    color: #fff;
    background-color: #757e6b;
    border-color: #757e6b;
}

    .btn-olive-gray:hover {
        background-color: #606859; /* you can tweak this if needed */
        border-color: #606859;
        color: #fff;
    }

.table .thead-olive th {
    color: #fff; /* white text for clarity */
    background-color: #757e6b; /* olive gray */
    border-color: #757e6b;
}
.table .thead-earth th {
    background-color: #3b5b4b; /* earth-tone green, lighter */
    color: #ffffff;
    border-color: #2f4739;
}


