/* styles.css */
.project-card {
    margin-top: 5px; /* Adds more space between the search field and the cards */
    height: 100%; /* Makes sure all cards are the same height */
}

/* Example modality colors */
.modality-CTM { background-color: lightgreen; }
.modality-FQMat { background-color: lightblue; }
.modality-TEC { background-color: lightyellow; }

/* Adds more space between the search field and the first row of cards */
.search-form {
    margin-bottom: 40px;
}
.rounded-box {
    border: 1px solid #ccc; /* Light grey border */
    border-radius: 15px; /* Adjust for desired roundness */
    padding: 15px; /* Space inside the box */
    background-color: #f9f9f9; /* Light background color */
    box-shadow: 0 2px 4px rgba(0,0,0,0.1); /* Optional: adds a subtle shadow */
}
