/* Status row removed - using status-pill directly */

.status-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid var(--line);
    padding: 6px 14px; /* Reduced padding for smaller badge */
    border-radius: 100px;
    letter-spacing: normal;
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem;
    font-weight: 600 !important;
    text-transform: capitalize;
    color: var(--ink);
    white-space: nowrap;
    margin-bottom: 12px;
}

.location-tag {
    display: inline-flex;
    align-items: center;
    padding: 2px 0;
    font-family: 'Inter', sans-serif;
    font-size: 0.84rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: var(--mid);
    white-space: nowrap;
}

.status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.15);
    animation: pulse 2s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.15);
    }

    50% {
        box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.08);
    }
}

/* Animations referenced */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 480px) {
    .status-pill {
        font-size: 0.75rem;
        padding: 8px 16px;
    }

    .location-tag {
        font-size: 0.75rem;
        padding: 0;
        white-space: normal;
        text-align: left;
        line-height: 1.45;
    }
}
