.ksa-container {
    background: #fff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.ksa-title-wrapper {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.ksa-title {
    font-size: 16px;
    color: #333;
}

.ksa-list-wrapper {
    max-height: 250px;
    overflow-y: auto;
    padding-right: 10px;
}

/* Custom Scrollbar */
.ksa-list-wrapper::-webkit-scrollbar {
    width: 8px;
}

.ksa-list-wrapper::-webkit-scrollbar-track {
    background: #f1f1f1; 
    border-radius: 4px;
}
 
.ksa-list-wrapper::-webkit-scrollbar-thumb {
    background: #ccc; 
    border-radius: 4px;
}

.ksa-list-wrapper::-webkit-scrollbar-thumb:hover {
    background: #aaa; 
}

.ksa-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.ksa-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ksa-icon {
    color: #e2a836;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ksa-icon svg {
    fill: #e2a836;
    width: 14px;
    height: 14px;
}

.ksa-text {
    font-size: 14px;
    color: #333;
}
