/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(to right, #f0f4f8, #e0ebf7);
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    color: #2c3e50;
}

h1 {
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 2.5em;
    font-weight: 900;
    color: #34495e;
    align-items: center;
}

/* Dashboard Container */
.dashboard {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 1000px;
    padding: 20px;
}

/* Card Styles */
.card {
    background: #ffffff;
    border-radius: 20px;
    padding: 25px 30px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    width: 250px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 35px rgba(0,0,0,0.15);
}

.card h2 {
    font-size: 1.2em;
    margin-bottom: 10px;
    color: #34495e;
}

.card p {
    font-size: 1em;
    margin: 8px 0;
}

/* Status Tanah Badge */
.status {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 12px;
    font-weight: 600;
    color: #fff;
    margin-top: 5px;
    font-size: 0.9em;
}

.basah {
    background-color: #3498db; /* Biru */
}

.normal {
    background-color: #27ae60; /* Hijau */
}

.kering {
    background-color: #e74c3c; /* Merah */
}

/* Footer Update */
.update {
    margin-top: 15px;
    font-size: 0.85em;
    color: #7f8c8d;
}

/* Responsive */
@media screen and (max-width: 600px) {
    .card {
        width: 90%;
    }
    
    h1{
        align-self: center;
        align-content: center;
    }
}