/* Add this CSS to your stylesheet or <style> tag */
.border-custom-color {
  border-color: #115817 !important;
}

/* To change the focus color (the outline when you click an input), you'll need this as well */
.border-custom-color:focus {
  border-color: #115817 !important;
  box-shadow: 0 0 0 0.25rem rgba(17, 88, 23, 0.25); /* a lighter version of your green */
}


h1 {
    background-color: #115817; /* Medium blue for H1 */
    color: #FFFFFF; /* White text for H1 */
}
h2 {
    background-color: #115817; /* Slightly lighter blue for H2 */
    color: #FFFFFF; /* White text for H2 */
}

p {
    /* font-size: 20px; */
    color: #000000; /* Black text for paragraphs */
}


.main_quote_samples_styles{
    font-size: "25px;"
}

.inputs{
        padding: 10px;
    margin: 3px;
    border-color: #115817; 
    border: 2px solid #115817; /* full declaration */
    width:100%;
    display: block;
  border-radius:7px;


}

.main_quote_samples_style select{
    padding: 10px;
    margin: 3px;
    border-color: #115817; 

}