@charset "UTF-8";
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f5f5f5;
  position: relative;
  overflow-x: hidden;
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

h1 {
  color: #2c5530;
  text-align: center;
  margin-bottom: 30px;
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@-webkit-keyframes successPulse {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  50% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes successPulse {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  50% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@-webkit-keyframes fadeOutModal {
  to {
    opacity: 0;
    -webkit-transform: translateY(-50px);
            transform: translateY(-50px);
  }
}
@keyframes fadeOutModal {
  to {
    opacity: 0;
    -webkit-transform: translateY(-50px);
            transform: translateY(-50px);
  }
}
@-webkit-keyframes backgroundShift {
  0%, 100% {
    background-position: 0% 50%;
  }
  25% {
    background-position: 100% 50%;
  }
  50% {
    background-position: 100% 100%;
  }
  75% {
    background-position: 0% 100%;
  }
}
@keyframes backgroundShift {
  0%, 100% {
    background-position: 0% 50%;
  }
  25% {
    background-position: 100% 50%;
  }
  50% {
    background-position: 100% 100%;
  }
  75% {
    background-position: 0% 100%;
  }
}
@-webkit-keyframes progressGlow {
  0%, 100% {
    background-position: 0% 0%;
    -webkit-box-shadow: 0 0 5px rgba(44, 85, 48, 0.3);
            box-shadow: 0 0 5px rgba(44, 85, 48, 0.3);
  }
  50% {
    background-position: 100% 0%;
    -webkit-box-shadow: 0 0 15px rgba(44, 85, 48, 0.6);
            box-shadow: 0 0 15px rgba(44, 85, 48, 0.6);
  }
}
@keyframes progressGlow {
  0%, 100% {
    background-position: 0% 0%;
    -webkit-box-shadow: 0 0 5px rgba(44, 85, 48, 0.3);
            box-shadow: 0 0 5px rgba(44, 85, 48, 0.3);
  }
  50% {
    background-position: 100% 0%;
    -webkit-box-shadow: 0 0 15px rgba(44, 85, 48, 0.6);
            box-shadow: 0 0 15px rgba(44, 85, 48, 0.6);
  }
}
.form-group {
  margin-bottom: 20px;
}

label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
  color: #333;
}

input[type=text],
input[type=number] {
  width: 100%;
  padding: 12px;
  border: 2px solid #ddd;
  border-radius: 4px;
  font-size: 16px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
input[type=text]:focus,
input[type=number]:focus {
  border-color: #2c5530;
  outline: none;
}

input[type=number] {
  width: 100px;
  padding: 8px;
}

button {
  background-color: #2c5530;
  color: #ffffff;
  padding: 12px 24px;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  cursor: pointer;
  width: 100%;
  margin: 5px;
}
button:hover {
  background-color: #1e3a22;
}
button:disabled {
  background-color: #ccc;
  cursor: not-allowed;
}
button.property-submit {
  background-color: #28a745;
  margin-top: 15px;
}
button.property-submit:hover {
  background-color: rgb(30.1449275362, 125.8550724638, 52);
}

select {
  width: 100%;
  padding: 8px;
  border: 1px solid #ddd;
  border-radius: 4px;
}

.error {
  padding: 15px;
  border-radius: 4px;
  margin: 20px 0;
  border: 1px solid;
  background-color: #f8d7da;
  color: #721c24;
  border-color: #f5c6cb;
}

.success {
  padding: 15px;
  border-radius: 4px;
  margin: 20px 0;
  border: 1px solid;
  background-color: #d4edda;
  color: #155724;
  border-color: #c3e6cb;
}

.info {
  padding: 15px;
  border-radius: 4px;
  margin: 20px 0;
  border: 1px solid;
  background-color: #d1ecf1;
  color: #0c5460;
  border-color: #4fd3e9;
}

.status {
  background: #e9ecef;
  padding: 15px;
  border-radius: 4px;
  margin: 15px 0;
  font-family: monospace;
  font-size: 14px;
}

.loading-modal-container {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1000;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.loading-modal-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  max-width: 400px;
}

.loading-modal {
  display: none;
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.loading-modal.show {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.loading-content {
  background: #ffffff;
  padding: 30px;
  border-radius: 8px;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  max-width: 400px;
  width: 90%;
  -webkit-transition: all 0.8s ease;
  transition: all 0.8s ease;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.loading-content.success {
  background: #d4edda;
  border: 2px solid #28a745;
}
.loading-content.success .loading-progress-container {
  display: none;
}
.loading-content.slide-up {
  -webkit-transform: translateY(-20px);
          transform: translateY(-20px);
  opacity: 0.9;
  height: 80px;
  padding: 10px 15px;
  overflow: hidden;
}
.loading-content.second-modal {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.loading-spinner {
  width: 50px;
  height: 50px;
  border: 5px solid #f3f3f3;
  border-top: 5px solid #2c5530;
  border-radius: 50%;
  -webkit-animation: spin 1s linear infinite;
          animation: spin 1s linear infinite;
  margin: 0 auto 20px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.loading-spinner.success {
  display: none;
}

.success-icon {
  display: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #28a745;
  margin: 0 auto 20px;
  position: relative;
  -webkit-animation: successPulse 0.6s ease-out;
          animation: successPulse 0.6s ease-out;
}
.success-icon.show {
  display: block;
}
.success-icon::after {
  content: "✓";
  color: #ffffff;
  font-size: 30px;
  font-weight: bold;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.fade-out-modal {
  -webkit-animation: fadeOutModal 1s ease-out forwards;
          animation: fadeOutModal 1s ease-out forwards;
}

.loading-message {
  font-size: 18px;
  color: #2c5530;
  font-weight: bold;
  margin-bottom: 10px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.loading-message.success {
  color: #155724;
}

.loading-submessage {
  font-size: 14px;
  color: #666;
  font-style: italic;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.loading-submessage.success {
  color: #155724;
}

.progress, .loading-progress-container {
  width: 100%;
  height: 8px;
  background-color: #e0e0e0;
  border-radius: 10px;
  margin: 15px 0 10px 0;
  overflow: hidden;
  position: relative;
}
.progress.progress, .loading-progress-container.progress {
  height: 20px;
  margin: 15px 0;
}

.progress-bar, .loading-progress-bar {
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(#2c5530), color-stop(#4a7c59), to(#2c5530));
  background: linear-gradient(90deg, #2c5530, #4a7c59, #2c5530);
  background-size: 200% 100%;
  border-radius: 10px;
  width: 0%;
  -webkit-transition: width 0.5s ease-out;
  transition: width 0.5s ease-out;
  -webkit-animation: progressGlow 2s ease-in-out infinite;
          animation: progressGlow 2s ease-in-out infinite;
}
.progress-bar.success, .loading-progress-bar.success {
  background: -webkit-gradient(linear, left top, right top, from(#28a745), color-stop(#34ce57), to(#28a745));
  background: linear-gradient(90deg, #28a745, #34ce57, #28a745);
  width: 100% !important;
}
.progress-bar.progress-bar, .loading-progress-bar.progress-bar {
  -webkit-transition: width 0.3s ease;
  transition: width 0.3s ease;
  -webkit-animation: none;
          animation: none;
}

.loading-progress-text {
  font-size: 12px;
  color: #888;
  text-align: center;
  margin-top: 5px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.loading-progress-text.success {
  color: #155724;
}

.property-selection {
  background: #f8f9fa;
  border: 2px solid #2c5530;
  border-radius: 8px;
  padding: 25px;
  margin: 25px 0;
}
.property-selection h2 {
  color: #2c5530;
  margin-top: 0;
  margin-bottom: 15px;
}
.property-selection.collapsed {
  background: #e9ecef;
  border: 1px solid #dee2e6;
  padding: 15px;
  margin: 15px 0;
}
.property-selection.collapsed h2 {
  margin-bottom: 5px;
  font-size: 16px;
}
.property-selection.collapsed .property-summary {
  font-size: 14px;
  color: #666;
  margin-bottom: 10px;
}

.property-list {
  margin: 20px 0;
  max-height: 240px;
  overflow-y: auto;
  border: 1px solid #ddd;
  border-radius: 6px;
  background: #f8f9fa;
  position: relative;
}
.property-list::-webkit-scrollbar {
  width: 8px;
}
.property-list::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px;
}
.property-list::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 4px;
}
.property-list::-webkit-scrollbar-thumb:hover {
  background: #a8a8a8;
}
.property-list.collapsed {
  max-height: none;
  overflow: visible;
  border: none;
  background: transparent;
}

.property-item {
  display: block;
  background: #ffffff;
  border: 2px solid #ddd;
  border-radius: 6px;
  padding: 15px;
  margin: 8px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
}
.property-list.collapsed .property-item {
  margin: 5px 0;
  border: 1px solid #ddd;
  padding: 10px;
}
.property-item:hover {
  border-color: #2c5530;
  -webkit-box-shadow: 0 2px 8px rgba(44, 85, 48, 0.1);
          box-shadow: 0 2px 8px rgba(44, 85, 48, 0.1);
}
.property-item input[type=radio] {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 18px;
  height: 18px;
  cursor: pointer;
}
.property-item input[type=radio]:checked {
  accent-color: #2c5530;
}
.property-item input[type=radio]:checked + .property-details {
  color: #2c5530;
  font-weight: bold;
}

.property-details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px;
  padding-right: 40px;
}

.property-address {
  font-size: 16px;
  color: #333;
  line-height: 1.4;
}

.property-uprn {
  font-size: 12px;
  color: #666;
  font-family: monospace;
}

.change-property-link {
  color: #2c5530;
  text-decoration: none;
  font-size: 14px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
}
.change-property-link:hover {
  text-decoration: underline;
}

.results {
  margin-top: 30px;
}
.results h2 {
  color: #2c5530;
}

.collection-item {
  background-color: #f8f9fa;
  padding: 15px;
  margin: 10px 0;
  border-radius: 4px;
  border-left: 4px solid #2c5530;
}

.collection-type {
  font-weight: bold;
  color: #2c5530;
}

.collection-date {
  font-size: 18px;
  color: #333;
  margin: 5px 0;
}

.collection-frequency {
  color: #666;
  font-style: italic;
}

.uprn-info {
  background-color: #e9ecef;
  padding: 15px;
  border-radius: 4px;
  margin: 20px 0;
}
.uprn-info h3 {
  color: #2c5530;
  margin-top: 0;
}

.uprn-list {
  max-height: 200px;
  overflow-y: auto;
  background: #ffffff;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 10px;
  margin-top: 10px;
}
.uprn-list::-webkit-scrollbar {
  width: 8px;
}
.uprn-list::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px;
}
.uprn-list::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 4px;
}
.uprn-list::-webkit-scrollbar-thumb:hover {
  background: #a8a8a8;
}

.uprn-item {
  padding: 5px 0;
  border-bottom: 1px solid #eee;
  font-size: 12px;
}
.uprn-item:last-child {
  border-bottom: none;
}
.uprn-item.selected-uprn {
  background-color: #d4edda;
  font-weight: bold;
}

#flagCanvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -2;
  pointer-events: none;
  opacity: 0;
  -webkit-transition: opacity 0.5s ease-out;
  transition: opacity 0.5s ease-out;
}
#flagCanvas.loaded {
  opacity: 1;
}

body::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(245, 245, 245, 0.75);
  z-index: -1;
  pointer-events: none;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(45deg, rgba(44, 85, 48, 0.05), rgba(44, 85, 48, 0.02), rgba(44, 85, 48, 0.08), rgba(44, 85, 48, 0.01));
  background-size: 400% 400%;
  -webkit-animation: backgroundShift 8s ease-in-out infinite;
          animation: backgroundShift 8s ease-in-out infinite;
  z-index: -3;
  pointer-events: none;
}

.container {
  background: #ffffff;
  padding: 30px;
  border-radius: 8px;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  max-width: 20%;
  min-width: 300px;
  width: clamp(300px, 20%, 500px);
  margin: 20px;
}
@media (max-width: 768px) {
  .container {
    max-width: none;
    min-width: unset;
    width: 95%;
    margin: 10px;
    padding: 20px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 25%;
    width: clamp(350px, 25%, 600px);
  }
}
@media (min-width: 1600px) {
  .container {
    max-width: 30%;
    width: clamp(400px, 30%, 700px);
  }
}

.disclaimer {
  margin: 10px 0 0 0;
  padding-top: 8px;
  border-top: 1px solid #eee;
  font-size: 8px;
  color: #ccc;
  text-align: center;
}
.disclaimer p {
  margin: 0;
  padding: 0;
}

.floating-help-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background-color: #2c5530;
  color: white;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  -webkit-box-shadow: 0 4px 12px rgba(44, 85, 48, 0.3);
          box-shadow: 0 4px 12px rgba(44, 85, 48, 0.3);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 1000;
  cursor: pointer;
}
.floating-help-button:hover {
  background-color: rgb(26.6046511628, 51.3953488372, 29.023255814);
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-box-shadow: 0 6px 20px rgba(44, 85, 48, 0.4);
          box-shadow: 0 6px 20px rgba(44, 85, 48, 0.4);
  color: white;
  text-decoration: none;
}
.floating-help-button:active {
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
}
@media (max-width: 768px) {
  .floating-help-button {
    width: 35px;
    height: 35px;
    font-size: 14px;
    bottom: 15px;
    right: 15px;
  }
}/*# sourceMappingURL=idx.css.map */