html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

html {
  position: relative;
  min-height: 100%;
}

body {
    background-color: #f7f7f7;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #333333;
    margin: 0;
    padding: 0;
    margin-bottom: 60px;
}
table {
    border-collapse: collapse;
    width: 100%;
    border: 1px solid black;
    background-color: #f2f2f2;
    padding: 10px;
}

th, td {
    border: 1px solid black;
    text-align: center;
    padding: 5px;
}

table tr:nth-child(even) {
        background-color: #f2f2f2;
    }

    table tr:nth-child(odd) {
        background-color: #ffffff;
    }
.comma-separated {
    text-align: right; /* Align the text to the right */
}

    .comma-separated::after {
        content: ", "; /* Add a comma and a space after the cell content */
    }

/* Remove the last comma from the last cell in the row */
tr:last-child td:last-child::after {
    content: none;
}
.chart-container {
    display: flex; /* set the container to use flexbox layout */
}

.chart {
    flex: 1; /* give each chart equal width */
    margin-right: 20px; /* add some margin between the charts */
}
.container {
    margin-top: 30px;
}

.card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,.2);
}

.card-header {
    background-color: #f7f7f7;
    border-bottom: none;
    padding: 20px;
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    color: #333333;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.card-body {
    padding: 20px;
}

.form-group {
    margin-bottom: 20px;
}

    .form-group label {
        font-weight: bold;
        margin-bottom: 5px;
        display: block;
    }

.form-control {
    border-radius: 0;
    border: none;
    border-bottom: 2px solid #333333;
    box-shadow: none;
    height: 50px;
    padding: 10px;
    font-size: 16px;
    font-weight: bold;
    color: #333333;
}

.btn-login {
    background-color: #333333;
    color: #ffffff;
    border-radius: 0;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    margin-top: 20px;
}

    .btn-login:hover {
        background-color: #222222;
    }

.link-forgot {
    display: block;
    text-align: right;
    margin-top: 10px;
    color: #333333;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
}

.link-forgot:hover {
    color: #222222;
}
.button.active {
    background-color: yellow;
}
