.filter-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    padding: 0% 0% 2% 0%;
}

.filter-group {
    position: relative;
    flex: 1;
    max-width: 300px;
}

.button-group {
    display: flex;
    gap: 10px;
}

main {
    padding: 3%;
}

.table-success{
    border-radius: 5px;
}

.my-css-filter {
    width: 100%;
    border: solid 1.5px #9e9e9e;
    border-radius: .5rem;
    background: none;
    padding: .5rem;
    font-size: 1rem;
    color: #000000;
    transition: border 150ms cubic-bezier(0.4,0,0.2,1);
}

.user-label {
    position: absolute;
    left: 15px;
    color: #9e9e9e;
    pointer-events: none;
    transform: translateY(1rem);
    transition: 150ms cubic-bezier(0.4,0,0.2,1);
}

.my-css-filter:focus, .my-css-filter:valid {
    outline: none;
    border: 1.5px solid #1ae881;
}

.my-css-filter:focus ~ label, .my-css-filter:valid ~ label {
    transform: translateY(-50%) scale(0.8);
    background-color: #fff;
    padding: 0 .2em;
    color: #1ae881;
}

   

.p-y-2 {
    padding-top: 12px;
    padding-bottom: 12px;
}
.p-y-3 {
    padding-top: 12px;
    padding-bottom: 12px;
}
.m-b-1 {
    margin-bottom: 12px; 
}
.m-t-1 { 
    margin-top: 12px;
}

/*

*/

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

.input-group {
    flex: 1 1 200px;
}

.button-group {
    display: flex;
    gap: 0.5rem;
}

@media (max-width: 768px) {
    .filter-row {
        flex-direction: column;
        align-items: stretch;
    }

    .filter-group {
        max-width:100%;         
    }

    .input-group, .button-group {
        width: 100%;
    }

    .button-group {
        flex-direction: column;
    }
}


/*



*/

.card {
    border-radius: 28px !important;
    padding: 4%;
    margin-bottom: 2%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.card p {
    margin: 0;
}