html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

.chatbots-container {
    display: flex;
    flex-direction: column;
    min-height: 43%;
}

.chatbot-card {
    border: none;
    background: inherit;
    text-align: left;
    width: 100%;
    transition: background-color 0.3s ease;
}

    /* Light mode */
    .chatbot-card:hover {
        background-color: #f3f4f6; /* Light grey background on hover */
        cursor: pointer;
    }

/* Dark mode */
.dark .chatbot-card:hover {
    background-color: #1f2937; /* Darker grey background for dark mode on hover */
    cursor: pointer;
}

/* Ensure the link inside the card doesn't cause the card to expand */
.chatbot-card a {
    display: inline-block;
    margin-top: -4px;
    margin-bottom: -4px;
}

.chatbot-card-stats p {
    font-size: 14px;
    margin: 5px 0;
}

.status-indicator {
    padding: 8px;
    border-radius: 8px;
    font-weight: bold;
    text-align: center;
}

    .status-indicator[data-status="Active"] {
        background-color: #28a745; /* Green for active */
        color: white;
    }

    .status-indicator[data-status="Offline"] {
        background-color: #dc3545; /* Red for offline */
        color: white;
    }

    .status-indicator[data-status="Maintenance"] {
        background-color: #ffc107; /* Yellow for maintenance */
        color: black;
    }

.blur-effect {
    background-color: rgba(0, 0, 0, 0.5);
}