@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
body {
    font-family: 'Inter', sans-serif;
    background-color: #f8f9fa;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
.text-brand { color: #80ad5a; }
.bg-brand {
    background-color: #80ad5a !important;
    color: #ffffff !important;
}
.btn-brand {
    background-color: #80ad5a;
    color: white;
    transition: all 0.2s ease;
}
.btn-brand:hover {
    background-color: #6b9449;
    color: white;
    transform: translateY(-1px);
}
.device-card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.device-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
}
.map-container {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.custom-leaflet-tooltip {
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    padding: 8px 12px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
}
.sensor-data {
    color: #80ad5a;
    font-weight: 700;
}
.content-card {
    background: #fff;
    border: none;
    border-radius: 16px;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
    padding: 2rem;
}
