﻿.a-blocks .content {
  padding: 30px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.a-blocks .head .text {
  grid-column: 1 / -1;
  font-size: 22px;
  font-weight: 600;
  color: #004d40;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid #e0e0e0;
  margin-left: 30px;
  margin-right: 30px;
}

.widget-analyticsblock {
  background-color: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
  gap: 15px;
  transition: transform 0.2s;
  /* cursor: pointer; */
}

.widget-analyticsblock:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.widget-analyticsblock.wide {
  grid-column: span 2;
}

.widget-analyticsblock.full {
  grid-column: 1 / -1;
}

.widget-analyticsblock h3 {
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 18px;
  color: #004d40;
  border-bottom: 1px solid #f0f0f0;
  padding-bottom: 10px;
}

.widget-analyticsblock h3 .status-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-right: 8px;
}

.widget-analyticsblock .text-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid #f9f9f9;
}

.widget-analyticsblock .text-line .label {
  color: #777;
  font-size: 14px;
}

.widget-analyticsblock .text-line .value {
  font-weight: bold;
  font-size: 15px;
}

.widget-analyticsblock .alert-button {
  background-color: #004d40;
  color: #fff;
  border: none;
  padding: 8px 15px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
  margin-top: 10px;
}

.widget-analyticsblock .drilldown-content {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid #f0f0f0;
}

.widget-analyticsblock .drilldown-content .list-header{
  font-weight: bold;
  margin-bottom: 10px;
  color: #004d40;
}

.widget-analyticsblock .drilldown-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.widget-analyticsblock .drilldown-content li {
  font-size: 14px;
  padding: 5px 0;
  border-bottom: 1px dotted #eee;
  color: #555;
}

.widget-analyticsblock .last-text {
  font-size: 15px;
  color: #555;
}

.widget-analyticsblock .last-two-list {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-top: 10px;
}

.widget-analyticsblock .last-two-list li {
  padding: 8px 0;
  border-bottom: 1px dotted #eee;
  font-size: 14px;
  color: #555;
}

.widget-analyticsblock .comment {
  font-size: 12px;
  color: #888;
  margin-top: 5px;
  border-top: 1px dotted #eee;
  padding-top: 5px;
}

.widget-analyticsblock .top-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
}
.widget-analyticsblock .top-table th, .widget-analyticsblock .top-table td {
  border: 1px solid #f0f0f0;
  padding: 10px 8px;
  text-align: left;
  font-size: 13px;
  /*white-space: nowrap;*/
}
.widget-analyticsblock .top-table th {
  background-color: #f9f9f9;
  font-weight: 600;
  color: #666;
}
.widget-analyticsblock .top-table td strong {
  color: #004d40;
}

.widget-analyticsblock .table-desc-text {
  font-size: 15px;
  color: #555;
  margin-bottom: 10px;
}

.widget-analyticsblock .interactive-item {
    display: grid;
    grid-template-columns: 0.1fr 0.3fr 1fr 0.4fr 0.2fr;
    gap: 10px;
    padding: 12px 0;
    border-bottom: 1px dotted #eee;
    align-items: center;
    font-size: 14px;
}

.widget-analyticsblock .interactive-item .status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ccc;
}

.widget-analyticsblock .interactive-item .loc {
    font-weight: 600;
    color: #004d40;
}

.widget-analyticsblock .interactive-item .desc {
    color: #555;
}

.widget-analyticsblock .interactive-item .contact {
    font-size: 12px;
    color: #888;
}

.widget-analyticsblock .interactive-item .action-button {
    background-color: #004d40;
    color: #fff;
    border: none;
    padding: 6px 10px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 12px;
}