/* style.css */
.card {
    border: none;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.card-header {
    background-color: #f8f9fa;
}

.btn-primary {
    background-color: #ff4b5c;
    border: none;
}

.btn-success {
    background-color: #33d69f;
    border: none;
}

.highlight {
    border: 3px solid #000000; /* or any color you prefer */
}

.equal-height {
    display: flex;
    flex-wrap: wrap;
}

.equal-height > .col-md-6 {
    display: flex;
    flex-direction: column;
}

.equal-height .card {
    flex: 1 0 auto;  /* Makes sure the card takes full height */
}