.stats-section {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.property-stats {
    display: grid;
    gap: 1rem;
    min-width: 250px;
}

.stat-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 3px solid var(--bs-border-color);
    border-radius: 5px;
    transition: border-color 0.3s, box-shadow 0.3s;
    cursor: text;
}

    .stat-item.active {
        border-color: #eee;
        border-bottom-color: var(--bs-primary-rehlo);
        box-shadow: 0 1px 0 rgba(1, 110, 179, 0.3);
        border-radius: 5px;
    }

.stat-content {
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.stat-icon {
    width: 20px;
    height: 20px;
    color: var(--bs-primary-rehlo);
}

.stat-input {
    width: 2.5rem;
    border: none;
    background: none;
    font-size: 1rem;
    font-weight: 400;
    color: #1a1a1a;
    padding: 0;
    -moz-appearance: textfield;
    text-align: right;
}

    .stat-input::-webkit-outer-spin-button,
    .stat-input::-webkit-inner-spin-button {
        -webkit-appearance: none;
        margin: 0;
    }

    .stat-input:focus {
        outline: none;
    }

.stat-label {
    color: #1a1a1a;
    font-size: 1rem;
    font-weight: 400;
    min-width: 4.5rem;
}

.number-controls {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.number-control {
    width: 2rem;
    height: 2rem;
    border: 1px solid var(--bs-primary-rehlo);
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--bs-primary-rehlo);
    font-size: 1.125rem;
    transition: all 0.2s;
    user-select: none;
}

    .number-control:hover {
        background-color: #f0f7ff;
    }

    .number-control:disabled {
        cursor: not-allowed;
        color: #dadada;
        border-color: #dadada;
        background-color: white;
    }
