/* /workspace/Project-5/static/base.css */
html {
    height: 100%;
}

body {
    background: #d2c9ff;
    height: calc(100vh - 164px);
    color: black;
    font-family: 'Lato';
}


/* below is not responsive, I will delete it later*/
.icon {
    align-items: center;
    display: inline-flex;
    justify-content: center;
    height: 1.5rem;
    width: 1.5rem;
}

.bg-my-primary {
    color: #0EABB0 !important;  /* Correct usage of !important */
}

.dark {
    color: #000000 !important;  /* Also corrected here */
}


.my-primary {
    color: #0EABB0;  /* Custom class, avoids conflicts */
}

.my-dark {
    color: #000000;  /* Custom class */
}

.cat_badge{
    background-color: purple;
    color: white;
    padding: 5px;
    border-radius: 5px;
}