﻿.polreg-card {
      background: var(--card-bg, #ffffff);
      border-radius: 14px;
      padding: 16px;
      margin-bottom: 12px;
      border: 1px solid var(--border-color, #eaeaea);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
    }

    .polreg-header {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .kecamatan-icon {
      width: 38px;
      height: 38px;
      background: #fff5f5;
      color: var(--primary-red, #eb0a1e);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 16px;
    }

    .kecamatan-name {
      font-size: 15px;
      font-weight: 800;
      color: var(--text-dark, #333);
    }

    .btn-detail {
      background: var(--primary-blue, #0056b3);
      color: white;
      padding: 8px 14px;
      border-radius: 8px;
      font-size: 11px;
      font-weight: 700;
      display: flex;
      align-items: center;
      gap: 6px;
      text-decoration: none;
    }

    .year-dropdown-container {
      margin-bottom: 16px;
    }

    .year-dropdown-wrapper {
      position: relative;
      display: flex;
      align-items: center;
    }

    .year-dropdown-wrapper i.dropdown-icon {
      position: absolute;
      left: 14px;
      color: var(--primary-red, #eb0a1e);
      font-size: 14px;
      pointer-events: none;
    }

    .year-dropdown-wrapper i.chevron-icon {
      position: absolute;
      right: 14px;
      color: var(--text-muted, #777);
      font-size: 12px;
      pointer-events: none;
    }

    .year-dropdown {
      width: 100%;
      padding: 12px 36px 12px 40px;
      border-radius: 12px;
      border: 1.5px solid #ddd;
      font-size: 14px;
      font-weight: 800;
      background: #fff;
      color: var(--text-dark, #333);
      appearance: none;
      -webkit-appearance: none;
      -moz-appearance: none;
      cursor: pointer;
      transition: 0.3s;
    }

    .year-dropdown:focus {
      outline: none;
      border-color: var(--primary-red, #eb0a1e);
      box-shadow: 0 0 0 3px rgba(235, 10, 30, 0.1);
    }

    .search-container {
      margin-bottom: 16px;
    }

    .search-box {
      position: relative;
      display: flex;
      align-items: center;
    }

    .search-box i {
      position: absolute;
      left: 14px;
      color: var(--text-muted, #777);
      font-size: 14px;
    }

    .search-input {
      width: 100%;
      padding: 11px 11px 11px 40px;
      border-radius: 10px;
      border: 1px solid #ddd;
      font-size: 13px;
      font-weight: 600;
      background: #fff;
    }

    .search-input:focus {
      outline: none;
      border-color: var(--primary-blue, #0056b3);
    }
