* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'SVN-Gilroy', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    min-height: 100vh;
}

.custom-body {
    /* display: flex; */
    padding: 0px 20px;
}

.block {
    max-width: 100%!important;
}

.custom-body .sidebar {
    display: flex;
    gap: 30px;
}

.custom-body .main-content {
    width: 100%;
    padding: 20px 10px;
}

.custom-body .section-title {
    color: #1a3a5f;
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: 600;
}

.custom-body .main-title {
    color: #13344A !important;
    margin-bottom: 30px;
    font-size: 32px;
    line-height: 40px;
    font-weight: 500;
}

.custom-body .search-box {
    position: relative;
    margin-bottom: 20px;
}

.custom-body .search-box input {
    width: 100%;
    height: auto;
    line-height: 24px;
    padding: 10px 14px 10px 40px;
    border: 1px solid #3ABCF4;
    border-radius: 8px;
    font-size: 16px;
    outline: none;
}

.custom-body .search-box input::placeholder {
    font-weight: 600;
    font-size: 16px;
    color: #667085;
}

.custom-body .search-box .search-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
}

.custom-body .tab {
    display: inline-block;
    padding: 10px 0;
    margin-right: 20px;
    font-size: 20px;
    line-height: 28px;
    font-weight: 400;
    color: #003558;
    cursor: pointer;
    position: relative;
}

.custom-body .tab.active {
    color: #1a3a5f;
}

.custom-body .tab.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: #D71249;
}

.custom-body .description {
    color: #799AB0;
    margin: 20px 0 40px;
    line-height: 1.6;
    font-size: 1.2rem;
    text-align: justify;
}

.custom-body .cards-container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.custom-body .card {
    width: calc(33.33% - 27px);
    
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    border: 1px solid #D1DDE5;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 10px;
}
@media screen and (max-width: 431px) {
	.custom-body .card {
		min-width: 350px;
		height: 365px;
	}

}
@media screen and (min-width: 431px) {
	.custom-body .card {
		min-width: 250px;
	}
	.custom-body .sidebar {
		padding: 20px;
	}
}
.custom-body .card-icon {
    width: 60px;
    height: 60px;
}

.custom-body .card-title {
    height: 60px;
    background: linear-gradient(to right, #1F5796, #3491FA);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 600;
}

.custom-body .tags {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.custom-body .tag {
    background-color: #D1DDE5;
    color: #1a5f9e;
    padding: 5px 15px;
    border-radius: 5px;
    font-size: 10px;
    line-height: 13.39px;
}

.custom-body .card-description {
    height: 200px;
    display: -webkit-box;
    -webkit-line-clamp: 8;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 1.2rem;
    text-align: justify;
}

.custom-body .api-badge {
    background-color: #3ABCF4;
    width: 30%;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 14px;
    text-align: center;
}

.custom-body .category-filter {
    margin-bottom: 20px;
}

.custom-body .filter-label {
    color: #1a3a5f;
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: 600;
}

.custom-body .category-combobox {
    width: 100%;
    height: 48px;
    padding: 12px 15px;
    font-size: 16px;
    font-weight: 600;
    color: #667085;
    background-color: white;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

.custom-body .category-combobox:focus {
    outline: none;
    border-color: #cbd5e0;
    box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.1);
}

.custom-body .pagination-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    gap: 10px;
}

.custom-body .page-numbers {
    display: flex;
    gap: 5px;
}

.custom-body .pagination-button {
    padding: 8px 12px;
    border: 1px solid #D1DDE5;
    border-radius: 5px;
    background-color: white;
    cursor: pointer;
    font-size: 14px;
    color: #1a3a5f;
    transition: all 0.2s ease;
}

.custom-body .pagination-button:hover:not(.disabled) {
    background-color: #3ABCF4;
    color: white;
    border-color: #3ABCF4;
}

.custom-body .pagination-button.active {
    background-color: #3ABCF4;
    color: white;
    border-color: #3ABCF4;
}

.custom-body .pagination-button.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

@media (max-width: 767px) {
    body {
        flex-direction: column;
    }

    .custom-body .sidebar,
    .custom-body .main-content {
        width: 100%;
    }

    /* .custom-body .card {
        width: 100%;
    } */
}

@media (min-width: 768px) and (max-width: 1023px) {
    .custom-body .cards-container {
        display: flex;
        flex-wrap: wrap;
        gap: 15px;
        justify-content: space-between;
        max-width: 80%;
        margin: auto;
    }

}