body {
    font-family: Arial, sans-serif;
    background-color: #f4f9fc;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    margin: 0;
    padding: 20px;
}

.main-title {
    color: #333;
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.module-container {
    display: flex;
    justify-content: space-around;
    width: 100%;
    max-width: 800px;
}

.module {
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin: 10px;
    width: 45%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.module-weed {
    background-color: #e1f5fe;
}

.module-alert {
    background-color: #ffebee;
}

.module h2 {
    color: #007bff;
    margin-bottom: 10px;
    border-bottom: 2px solid #007bff;
    padding-bottom: 5px;
}

.module p {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.count {
    color: #ff6600;
    font-weight: bold;
}

.time {
    color: #28a745;
    font-weight: bold;
}

.module:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}