/* assets/styles.css */

body {
    background-color: #d2e5cb;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: #333;
  }
  
.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 16rem;
    padding: 2rem 1rem;
    background-color: #4e7a3e;
    color: white;
}

.subtitle-sidebar {
    font-size: 15px;
    color: #334b2a;
}

.subtitle-sidebar a {
    color: #e98c00;
    font-weight: bold;
    text-decoration: none;
}

.subtitle-sidebar a:hover {
    color: #334b2a;
}

.custom-hr {
    border-color: #888888;
    opacity: 1;
}

.nav-pills .nav-link {
    color: #fff;
}

.nav-pills .nav-link.active {
    color: #fff;
    background-color: #334b2a;
}

.page-content {
    margin-left: 18rem;
    margin-right: 2rem;
    padding: 2rem 1rem;
    background-color: #d2e5cb;
}

.button {
    background-color: #80b06e;
}

.shadow-style {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    border-radius: 5px;
}

/* Cards */
.card-text {
    text-align: center;
    margin: 0 0;
    padding: 0;
}

/* Charts */
.chart-style {
    border: 2px solid #fff;
    border-radius: 8px;
    box-shadow: 0 6px 8px rgba(89, 87, 87, 0.1);
}