#greensites-admin-detail-card {
  background: #f4fdf7;
  border-radius: 16px;
  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.05);
  padding: 14px;
  width: 350px;
  height: auto;
  min-height: 250px;
  font-family: "Segoe UI", sans-serif;
  position: relative;
  display: flex;
  flex-direction: column;
}

.greensites-admin-detail-card-title {
  margin: 0;
  display: flex;
  flex-direction: row;
}

.greensites-admin-detail-card-title span {
  margin-right: 4px;
}

.greensites-admin-detail-card-title h2 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

.greensites-admin-detail-card:not(.loading) .greensites-admin-detail-card-body,
.greensites-admin-detail-card:not(.loading) .greensites-admin-detail-card-button-container {
  display: block;
}

.greensites-admin-detail-card:not(.loading) .greensites-admin-detail-card-header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.greensites-admin-detail-card-loader-container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  flex-grow: 1;
}

.greensites-admin-detail-card-body {
  background: #ffffff;
  border-radius: 12px;
  padding: 16px;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05);
}

.greensites-admin-detail-card-main-data {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.greensites-admin-detail-card-label {
  font-size: 12px;
  padding-bottom: 122px;
}

.greensites-admin-detail-card-value {
  font-size: 28px;
  font-weight: bold;
  color: #1b442b;
  margin-top: 8px;
}

.unit {
  font-size: 12px;
  font-weight: normal;
}

.greensites-admin-detail-card-grade {
  background: #3ebd6b;
  color: white;
  font-weight: bold;
  padding: 12px 12px;
  border-radius: 6px;
  font-size: 18px;
}

.greensites-admin-detail-card-sub-data {
  display: flex;
  justify-content: space-between;
  margin-top: 12px;
}

.estimate {
  font-size: 14px;
  color: #444;
}

.usd-range {
  color: #7a9c7d;
  font-size: 12px;
}

.greensites-admin-detail-card-graph {
  width: 100px;
  height: 50px;
  overflow: hidden;
}

.greensites-admin-detail-card-graph-svg {
  width: 100%;
  height: 100%;
}

.greensites-admin-detail-card-graph-path {
  stroke-dasharray: 150;
  stroke-dashoffset: 150;
  animation: drawLine 2s ease-out forwards;
}

@keyframes drawLine {
  to {
    stroke-dashoffset: 0;
  }
}

.greensites-admin-detail-card-button-container {
  text-align: center;
  margin-top: 10px;
}

.greensites-admin-detail-card-action-button {
  background-color: #3ebd6b;
  color: white;
  border: none;
  padding: 10px 10px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.greensites-admin-detail-card-action-button:hover {
  background-color: #28a066;
}

.greensites-admin-detail-card-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
  height: 100%;
}
