.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); /* Responsive columns */
    gap: 20px; /* Space between panels */
    padding: 20px;
  
}
@media (max-width: 600px) { /* Mobile view */
    .grid-container {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr)); /* Smaller minimum width */
    }
}
.panel {
    width: 100%;
    height: 100px;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 2px solid #f6f6f6;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 6px 4px rgba(0, 0, 0, 0.1);
}
.panel i {
    font-size: 36px;
    color: black;
    margin-bottom: 10px;
}
.panel p {
    font-size: 15px;
    color: #333;
    margin: 0;

    font-family: "Roboto", sans-serif;
}
a {
    display: block;
    text-decoration: none; /* Remove the underline */
    color: inherit; /* Make sure the color is inherited */
}

.viewallpanel {
    width: 100%;
    height: 100px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    border-radius: 8px;
    text-align: center;

}

