:root {
  --red: #DD0B15;
  --blue: #DD0B15;
  --orange: #EA571C;
  --yellow: #FFDE00;
  --black: #000000;
  --white: #FFFFFF;
  --bg-light: #FFF9DA;
}

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&family=Inter:wght@300;400;500&display=swap');

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: var(--bg-light);
  color: var(--black);
}

header {
  background: var(--blue);
  color: var(--white);
  padding: 15px;
  text-align: center;
  position: relative;
}

header a button {
  position: absolute;
  right: 20px;
  top: 15px;
}

#container {
  display: flex;
  height: calc(100vh - 70px);
}

#map {
  flex: 2;
}

#sidebar {
  flex: 1;
  background: var(--white);
  padding: 15px;
  overflow-y: auto;
  border-left: 6px solid var(--blue);
}

.site-card {
  background: var(--white) !important;
  border-left: 5px solid var(--red);
  padding: 12px;
  margin-bottom: 10px;
  cursor: pointer;
  transition: 0.2s;
  border-radius: 6px;
}

.site-card:hover {
  background: var(--red) !important;
  color: var(--white) !important;
}

.site-details {
  background: var(--white);
  border-left: 6px solid var(--blue);
  padding: 12px;
  border-radius: 6px;
  margin-top: 15px;
}

button {
  border: none;
  padding: 8px 12px;
  border-radius: 4px;
  cursor: pointer;
}

.btn-primary { background: var(--blue); color: var(--white); }
.btn-accent { background: var(--orange); color: var(--white); }
.btn-danger { background: var(--red); color: var(--white); }

#search {
  border: 2px solid var(--blue);
  outline: none;
}

#search:focus {
  border-color: var(--red);
}

.btn-accent{
  background:#EA571C;
  color:white;
  border:none;
  padding:6px 10px;
  border-radius:6px;
  cursor:pointer;
  font-size:14px;
}
.btn-accent:hover{
  background:#C94914;
}

header h1 { color:#DD0B15; }

