:root {
    --lime: #32CD32;
    --lime-dark: #228B22;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.card {
    background: white;
    border: 1px solid #f3f4f6;
    border-radius: 1rem;
    padding: 1.5rem;
    transition: all 0.2s;
}

.card:hover {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.25rem 0.625rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.025em;
}

.status-active {
    background-color: #f0fdf4;
    color: #32CD32;
}

.status-inactive {
    background-color: #fef2f2;
    color: #ef4444;
}

.dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 9999px;
}

.dot-active { background-color: #32CD32; }
.dot-inactive { background-color: #ef4444; }

input:focus, textarea:focus {
    outline: none;
    box-shadow: 0 0 0 2px #32CD32;
    border-color: #32CD32;
}

#modal-overlay.active {
    display: flex;
}

#modal-overlay.active #modal-box {
    transform: scale(1);
    opacity: 1;
}
