.sdg-card {
    cursor: pointer;
    transition: all 0.3s;
    height: 100%;
}

    .sdg-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }

    .sdg-card.selected {
        border: 3px solid #28a745;
        background-color: rgba(40, 167, 69, 0.1);
    }

.sdg-image {
    width: 100%;
    height: auto;
    max-height: 120px;
    object-fit: contain;
}

.selected-sdgs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.selected-sdg-item {
    display: flex;
    align-items: center;
    margin-right: 8px;
}

    .selected-sdg-item img {
        width: 50px;
        height: 50px;
        object-fit: contain;
    }

.col {
    position: relative;
    width: 100%;
    padding-right: 5px;
    padding-left: 5px;
}

.labelStyle {
    color: #3A3A3A;
    font-family: Open Sans;
    font-size: 8pt;
}

.card-body {
    padding: 1.25rem;
}
