/* Custom CSS for Bootstrap 5 */

/* Body */
body {
    background-color: #f8f9fa;
    /* font-family: 'Roboto', sans-serif; */
    font-family: 'Roboto';
}

/* Navbar */
.navbar {
    background-color: #343a40;
}

.navbar-brand, .navbar-nav {
    color:#0b9444 !important;
}

.nav-link {
    color:#5a4d45 !important;
}

/* .navbar-brand:hover, .navbar-nav .nav-link:hover {
    color: #adb5bd !important;
} */

/* Buttons */
.btn-custom {
    /* background-color: #007bff; 
    color: #ffffff; */
    /* background-color: #5a4d45; */
    background-color: white;     
    color: #0b9444;
    border-color: #5a4d45;
    /* border:#5a4d45; */
}

.btn-custom:hover {
    background-color: #0056b3;
    color: #ffffff;
}

/* Cards */
.card {
    border: none;
    border-radius: 0.5rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.card-title {
    color: #343a40;
}

.card-text {
    color: #6c757d;
}

/* Footer */
.footer {
    background-color: #343a40;
    color: #ffffff;
    padding: 1rem 0;
    text-align: center;
}

.footer a {
    color: #007bff;
    text-decoration: none;
}

.footer a:hover {
    color: #0056b3;
    text-decoration: underline;
}

.plant-color {
    color: #0b9444;
}

.soil-color {
    color: #5a4d45;
}

h1, h2, h3, h4, h5, p, li, address {
    color: #5a4d45;
}

a, a:link {
    color: #0b9444;
}

thead tr {
    background-color: #5a4d45; /* Dark gray background for header */
    color: #ffffff; /* White text color */
}

tbody tr {
    color: #5a4d45;
}

input[type="submit"] {
    color: #0b9444;
}

button {
    color: #0b9444;
    border-color: #5a4d45;
}

select, input[type="text"], input[type="email"], input[type="password"], input[type="number"], input[type="date"], input[type="search"] {
    color: #5a4d45;
}

/* select:focus {
    color: #0b9444;
} */

/* show menu on left and main content on right */
.sidenav {
    /* height: 100%; */
    height: 100vh;    
    width: 300px;
    font-size: 15px;
    position: fixed;
    top: 0;
    left: 0;
    background-color: white;
    padding-top: 20px;
    overflow-y: auto; /* Add vertical scroll bar */    
    padding: 10px;
}

/* .sidenav a {
    padding: 1px 1px 1px 1px;
    text-decoration: none;
    font-size: 15px;
    color: #818181;
    display: block;
} */

.sidenav a:hover {
    color: #5a4d45;
}

.main {
    margin-left: 300px; /* Same as the width of the sidenav */
    padding: 0px 10px;
}

/* show current page in pagination */
.current-page {
    /* font-weight: bold; */
    /* color: #5a4d45; Change this to your preferred highlight color */
    text-decoration: underline;    
}