.zone-entry {
    position: relative;
    padding: 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.375rem;
    background-color: #f9fafb;
}

.zone-entry:hover {
    border-color: #d1d5db;
}

.remove-zone {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    padding: 0.25rem 0.5rem;
    color: #ef4444;
    border-radius: 0.25rem;
    font-size: 0.875rem;
    line-height: 1.25rem;
    transition: all 150ms ease-in-out;
}

.remove-zone:hover {
    background-color: transparent;
}

.success-message {
    color: #059669;
    background-color: #d1fae5;
    border: 1px solid #34d399;
}

.error-message {
    color: #dc2626;
    background-color: #fee2e2;
    border: 1px solid #f87171;
}

.message {
    padding: 0.75rem;
    border-radius: 0.375rem;
    margin-top: 1rem;
} 

.tooltip-label {
    position: relative;
    cursor: help;
}

.tooltip-label::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 0;
    background: #333;
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    white-space: nowrap;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.2s;
}

.tooltip-label:hover::after {
    visibility: visible;
    opacity: 1;
}

.fixed.inset-0::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: white;
    opacity: 0.7;
    z-index: 1;
}

.relative.z-10 {
    position: relative;
    z-index: 2;
}