.court-locator-container {
    display: flex;
    height: 600px;
    border: 1px solid #ddd;
    font-family: 'Rajdhani', sans-serif;
}

.court-sidebar {
    width: 400px;
    display: flex;
    flex-direction: column;
    background: #fff;
    border-right: 1px solid #ddd;
    overflow: hidden;
}

.court-list {
    flex: 1;
    overflow-y: auto;
}

.court-card {
    display: flex;
    padding: 20px;
    border-bottom: 1px solid #f0f0f0;
    cursor: pointer;
    transition: background 0.2s;
}

.court-card:hover { background: #f9f9f9; }
.court-card.active { border-left: 4px solid #007aff; background: #f0f7ff; }

.card-number {
    width: 24px; height: 24px;
    background: #007aff; color: white;
    border-radius: 50%; text-align: center;
    font-weight: bold; margin-right: 15px;
}

.court-name { font-weight: 700; color: #111; margin-bottom: 4px; }
.court-address { font-size: 0.85rem; color: #666; line-height: 1.4; }
.court-distance { font-size: 0.8rem; color: #999; margin-top: 8px; }

.court-map { flex: 1; }

/* Sidebar Container */
.court-sidebar {
    width: 380px;
    background: #fff;
    border-right: 1px solid #e0e0e0;
    display: flex;
    flex-direction: column;
}

/* Individual Court Card */
.court-card {
    display: flex;
    padding: 18px 20px;
    border-bottom: 1px solid #f0f0f0;
    cursor: pointer;
    transition: 0.2s ease;
}

/* Numbered Circle */
.card-number {
    background: #0052cc;
    color: #fff;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    margin-right: 15px;
    flex-shrink: 0;
}

.court-name {
    font-weight: 700;
    font-size: 15px;
    color: #1a1a1a;
    text-transform: uppercase;
}

.court-address {
    font-size: 13px;
    color: #707070;
    margin-top: 4px;
    line-height: 1.4;
}

.court-tags {
    margin-top: 8px;
    display: flex;
    gap: 5px;
}

.tag {
    font-size: 11px;
    background: #f4f4f4;
    padding: 2px 6px;
    border-radius: 4px;
    color: #555;
}

.court-locator-wrap {
  display: flex;
  height: 600px;
  border: 1px solid #ddd;
}

.sidebar-list {
  width: 350px;
  overflow-y: auto;
  background: white;
  border-right: 1px solid #eee;
}

/* Replicating the card from image_c59cb5.jpg */
.court-card {
  display: flex;
  padding: 20px;
  border-bottom: 1px solid #f0f0f0;
  cursor: pointer;
}

.court-card:hover { background: #f8faff; }

/* The numbered blue circle */
.blue-circle {
  background: #007aff;
  color: white;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 12px;
  margin-right: 15px;
  flex-shrink: 0;
}

.court-name {
  font-weight: 700;
  color: #111;
  text-transform: uppercase;
  font-size: 14px;
}

.court-address {
  font-size: 12px;
  color: #666;
  margin-top: 4px;
  line-height: 1.4;
}

.court-meta {
  font-size: 11px;
  color: #aaa;
  margin-top: 8px;
}