/* Grid container styles */
.dash-grid-container {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    /* 2 columns on mobile */
    gap: 1rem;
    /* Gap between columns and rows */
    padding: 1rem;
    /* Padding around the grid */
    max-width: 1100px;
    /* Max width for larger screens */
    margin: 0 auto;
    /* Center the grid */
}

.metric-name {
    font-size: 1.15rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
    color: #b3fceb;
}

.metric-value {
    font-size: 2.3rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
   color: #fff;
}

.metric-value-btc-unit {
 color: #ffcd81;
}

@media (min-width: 768px) {

 

    .dash-grid-container {
        grid-template-columns: repeat(2, 1fr);
        /* 4 columns on larger screens */
    }

    }

    .metric-button {
    background-color: rgb(10, 42, 38);
 border: 1px solid rgb(19, 75, 68);
    border-radius: 4px;
    padding: 8px 12px;
    font-size: 14px;
    color: #b3fceb;
    cursor: pointer;
    transition: background-color 0.2s ease;
    margin-top: 8px;
}

.metric-button:hover {
    background-color: rgb(8, 34, 31);
}

.metric-button:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.1);
}

.metric-button a {
    text-decoration: none;
      color: #b3fceb;
}

.allo-container {
    text-align: left;
     color: rgb(38, 150, 137);
     width: 100%;
      font-size: 14px;
     
}


.allo-text {
 color: #b3fceb;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 0 20px;
}

td {
    width: 50%;
    box-sizing: border-box;
    padding: 8px;
}

.text-center {
    text-align: center;
}