.patient-forms-tabs {
    display: flex;
    flex-wrap: wrap;
    margin: 0 15px 50px;
    /* gap: 20px; */
    justify-content: center;
    /* min-width: max-content;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch; */
}

.patient-forms-tabs .filter-tab {
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
    padding: 10px;
    font-weight: bold;
    color: #0f172a;
    background-color: transparent;
    border-radius: inherit;
    margin-right: 10px;
}

.patient-forms-tabs .filter-tab.active {
    color: #f97316;
    border-bottom: 2px solid #f97316;
}

.patient-forms-tabs .filter-tab:before {
    background-color: transparent !important;
    border-radius: inherit;
}

.patient-forms-grid {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    /* grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); */
    gap: 20px;
}

.form-card {
    width: 46%;
    background: white;
    margin: 0 15px;
    border-bottom: 10px solid transparent;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    position: relative;
}

.form-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 5px;
}

.form-card p {
    color: #475569;
    font-size: 14px;
    margin-bottom: 10px;
}

.download-icon {
    position: absolute;
    top: 20px;
    right: 20px;
}

.patient-heading-block {
    font-size: 20px;
}

.patient-heading-content-main {
    padding: 30px;
}

.heading-icon-main {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.form-card:hover {
    border-bottom: 10px solid #78ce3e;
    border-radius: 10px;
}

@media only screen and (max-width: 991px) {
    .form-card {
        width: 43%;
    }

}

@media only screen and (max-width: 567px) {
    .form-card {
        width: 100%;
    }

}