.entry-content ul,
.entry-content ol {
  margin-left: 1.5em;
  margin-bottom: 1em;
  padding-left: 1.5em;
  list-style-position: outside;
}

.entry-content ul {
  list-style-type: disc;
}

.entry-content ol {
  list-style-type: decimal;
}

.entry-content li {
  margin-bottom: 0.5em;
  font-size: 1rem;
  line-height: 1.5;
  list-style-type: circle;
}



.entry-content li{
  list-style: inherit;
}

.loanlist-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.loanlist-item {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
  border-radius: 8px;
  border: 1px solid #ccc;
}
.loanlist-col {
  display: flex;
  align-items: center;
  gap: 25px;
}
.loanlist-bank {
  display: flex;
  align-items: center;
  gap: 10px;
}
.loanlist-bank img {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  display: block;
}
.loanlist-bank-title {
  font-size: 18px;
  font-weight: bold;
}
.loanlist-details {
  display: flex;
  flex-direction: column;
  font-size: 14px;
}
.loanlist-details span:first-child {
  color: #666;
  font-size: 14px;
}
.loanlist-details span:last-child {
  font-weight: bold;
  color: #333;
  font-size: 16px;
}
.loanlist-apply-btn {
  margin-left: auto;
  border-radius: 8px;
  outline: none;
  border: none;
  padding: 10px 20px;
  color: white;
  font-weight: bold;
  cursor: pointer;
  background-color: #004fc5;
}
