/* numios-styles.css */

.card {
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.card-body {
    flex: 1;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.2);
}

.card-img-top {
    width: 100%;
    max-height: 200px;
    object-fit: cover;
}

.featured h5 {
    color: #80A035; 
}


.row {
    display: flex;
    flex-wrap: wrap;
}

.card-img-top {
    max-height: 100px; /* Set this to your desired max height */
    max-width: 100%; /* This makes sure the image is never wider than its container */
    object-fit: cover; /* This will cover the area, potentially cropping the image */
    object-position: top; /* This "tops" the image within the area */
}

a {
    color: #abf600;
    font-weight: bold;
}

.card-link {
    color: inherit; /* Make the text color the same as the parent element */
    text-decoration: none; /* Remove underline from links */
}

.card-link:hover {
    text-decoration: none; /* Remove underline from links on hover */
}

a {
    font-size: 0.8rem; 
}

.icon-green {
    color: green;
}

.icon-red {
    color: red;
}

.sidebar {
    width: 250px;
    transition: width 0.3s ease;
}

.sidebar.open {
    width: 0;
    overflow: hidden;
}
